本文整理了Java中android.widget.GridView.setBackgroundDrawable()
方法的一些代码示例,展示了GridView.setBackgroundDrawable()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。GridView.setBackgroundDrawable()
方法的具体详情如下:
包路径:android.widget.GridView
类名称: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();
}
});
}
内容来源于网络,如有侵权,请联系作者删除!