本文介绍了preferenceFragment背景颜色的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我使用的是 preferenceFragment
(不带的ListView
),但我无法设置背景色,它似乎是透明的。
I am using a PreferenceFragment
(without a ListView
), but am unable to set the background color, and it seems to be transparent.
我如何设置背景颜色为白色与 preferenceFragment
?
How can I set the background color to white with PreferenceFragment
?
编辑:第一张截图:
first screenshot:
重写onCreateView无法正常工作 -
Overriding onCreateView not work -
推荐答案
这个问题也回答了<一href="http://stackoverflow.com/questions/16353861/android-changing-the-background-color-for-$p$pference-fragment">here
添加以下code到你的preferenceFragment将让你添加一个背景颜色,图像等。
Adding the following code to your PreferenceFragment will let you add a background color, image, etc.
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
View view = super.onCreateView(inflater, container, savedInstanceState);
view.setBackgroundColor(getResources().getColor(android.R.color.your_color));
return view;
}
这篇关于preferenceFragment背景颜色的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!