android.widget.GridView.setBackgroundDrawable()方法的使用及代码示例

x33g5p2x  于2022-01-19 转载在 其他  
字(2.1k)|赞(0)|评价(0)|浏览(129)

本文整理了Java中android.widget.GridView.setBackgroundDrawable()方法的一些代码示例,展示了GridView.setBackgroundDrawable()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。GridView.setBackgroundDrawable()方法的具体详情如下:
包路径:android.widget.GridView
类名称:GridView
方法名:setBackgroundDrawable

GridView.setBackgroundDrawable介绍

暂无

代码示例

代码示例来源:origin: com.albedinsky.android/ui

/**
 */
@Override
@SuppressWarnings("deprecation")
public void setBackgroundDrawable(Drawable background) {
  super.setBackgroundDrawable(background);
  this.ensureDecorator();
  mDecorator.applyBackgroundTint();
}

代码示例来源:origin: com.albedinsky.android/ui-widget-collection

/**
 */
@Override
@SuppressWarnings("deprecation")
public void setBackgroundDrawable(Drawable background) {
  super.setBackgroundDrawable(background);
  this.ensureDecorator();
  mDecorator.applyBackgroundTint();
}

代码示例来源:origin: bilibili/BiliShare

private void createShareWindowIfNeed() {
  if (mShareWindow != null)
    return;
  Context context = getContext();
  grid = createShareGridView(context, getItemClickListener());
  RelativeLayout.LayoutParams gridParams = new RelativeLayout.LayoutParams(RelativeLayout.LayoutParams.MATCH_PARENT, RelativeLayout.LayoutParams.WRAP_CONTENT);
  gridParams.addRule(RelativeLayout.ALIGN_PARENT_BOTTOM);
  grid.setLayoutParams(gridParams);
  mContainerView = new RelativeLayout(getContext());
  mContainerView.setBackgroundColor(getContext().getResources().getColor(R.color.bili_socialize_black_trans));
  RelativeLayout.LayoutParams containerParams = new RelativeLayout.LayoutParams(LinearLayout.LayoutParams.MATCH_PARENT, LinearLayout.LayoutParams.MATCH_PARENT);
  mContainerView.setLayoutParams(containerParams);
  mContainerView.addView(grid);
  mContainerView.setOnClickListener(this);
  mShareWindow = new PopupWindow(mContainerView, WindowManager.LayoutParams.MATCH_PARENT, WindowManager.LayoutParams.MATCH_PARENT, true);
  grid.setBackgroundDrawable(new ColorDrawable(Color.WHITE));
  mShareWindow.setOutsideTouchable(true);
  mShareWindow.setAnimationStyle(-1);
  mShareWindow.setOnDismissListener(new PopupWindow.OnDismissListener() {
    @Override
    public void onDismiss() {
      if (getDismissListener() != null)
        getDismissListener().onDismiss();
    }
  });
}

相关文章

GridView类方法