gpt4 book ai didi

android - 具有透明背景的 PreferenceFragment?

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:00:04 26 4
gpt4 key购买 nike

我创建了一个包含两个类别和一个复选框的 PreferenceFragment,但是,当我在我的应用程序中显示它时,背景似乎是透明的。

我可以看到主要 Activity 、字段和 PreferenceFragment 位于主要 Activity 的顶部...对此有什么解决方案?

在我的主要 Activity 中,我这样做是为了在选择设置按钮时打开 PreferenceFragment:

@Override
public boolean onOptionsItemSelected(MenuItem item) {
//handle presses on action bar items
switch (item.getItemId()) {
case R.id.action_settings:
getFragmentManager().beginTransaction().replace(android.R.id.content,
new SettingsFragment()).commit();
return true;
default:
return super.onOptionsItemSelected(item);
}
}

我的 PreferenceFragment 代码如下所示: 公共(public)类 SettingsFragment 扩展 PreferenceFragment {

@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);

//load the preferences from an XML resource
addPreferencesFromResource(R.xml.preferences);
}
}

我的 preferences.xml 看起来像这样:

<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:layout="@layout/fragment_settings">
<PreferenceCategory
android:title="@string/server_prefs_title"
android:key="pref_key_server_settings" >
<CheckBoxPreference
android:key="pref_server_url"
android:title="@string/pref_server_url"
android:summary="@string/pref_server_url_summ"
android:defaultValue="true" />
</PreferenceCategory>
<PreferenceCategory
android:title="@string/company_prefs_title"
android:key="pref_key_company_settings" >
</PreferenceCategory>
</PreferenceScreen>

我尝试了 Stack Overflow 上建议的另一个答案并将其添加到我的首选项 fragment 中,但是,尽管它阻止了从主 Activity 可见的字段,但它看起来只是一个掩码,因为 fragment 字段也受到影响我设置的颜色:

@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle
savedInstanceState) {
View view = super.onCreateView(inflater, container, savedInstanceState);
view.setBackgroundColor(getResources().getColor(android.R.color.black));

return view;
}

感谢帮助!!!

编辑:我想我在输入时回答了我自己的问题......我补充道:

addPreferencesFromResource(R.xml.preferences);

完成后:

 View view = super.onCreateView(inflater, container, savedInstanceState);
view.setBackgroundColor(getResources().getColor(android.R.color.black));

这是解决这个问题的正确方法吗?

最佳答案

将此添加到扩展 PreferenceFragment 的 fragment (SettingsFragment) 中:

@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
View view = super.onCreateView(inflater, container, savedInstanceState);
view.setBackgroundColor(getResources().getColor(android.R.color.white));
return view;
}

关于android - 具有透明背景的 PreferenceFragment?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23351455/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com