gpt4 book ai didi

java - 为什么即使在 settings.xml 文件中声明了 PreferenceCategory 的摘要也没有得到它?

转载 作者:行者123 更新时间:2023-11-30 01:51:22 24 4
gpt4 key购买 nike

我正在开发一个 Material Design 应用,并且我已经为 SettingsActivity 声明了一个 xml 文件。

我遇到的问题是 PreferenceCategoryandroid:summary 标签没有显示任何摘要,即使在 settings.xml< 中声明它之后也是如此.

这是SettingsActivity.java的截图(参见:这里没有总结):

enter image description here

这是SettingsActivity.java文件的代码:

public class SettingsActivity extends AppCompatActivity {

Toolbar toolbar;

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_settings);

SpannableString s = new SpannableString("Settings");
s.setSpan(new TypefaceSpan(this, "Roboto-Medium.ttf"), 0, s.length(),
Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);

toolbar = (Toolbar) findViewById(R.id.toolbar);
setSupportActionBar(toolbar);

getSupportActionBar().setDisplayHomeAsUpEnabled(true);
getSupportActionBar().setTitle(s);

// Display the fragment as the main content.
getFragmentManager().beginTransaction()
.replace(R.id.fragment_container, new SettingsFragment())
.commit();

}

public static class SettingsFragment extends PreferenceFragment implements SharedPreferences.OnSharedPreferenceChangeListener {

public static final String SHARE_APP_PREFERENCE_KEY = "prefNotify";

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

getActivity().setTheme(R.style.prefCategoryStyle);
// Load the preferences from an XML resource
addPreferencesFromResource(R.xml.settings);

}

public void onSharedPreferenceChanged(SharedPreferences sharedPreferences,
String key) {
if (key.equals(SHARE_APP_PREFERENCE_KEY)) {
// do something
}
}

}

}

这是activity_settings.xml文件的代码:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/windowBackground"
tools:context="com.abc.xyz.SettingsActivity">

<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
app:layout_scrollFlags="scroll|enterAlways"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
android:elevation="4dp"/>

<FrameLayout
android:id="@+id/fragment_container"
android:layout_width="match_parent"
android:layout_below="@id/toolbar"
android:layout_height="match_parent"/>

</RelativeLayout>

这是settings.xml文件的代码:

<?xml version="1.0" encoding="utf-8"?>
<PreferenceScreen
xmlns:android="http://schemas.android.com/apk/res/android">
<PreferenceCategory
android:key="prefNotification"
android:title="@string/prefNotification"
android:summary="@string/pref_notify_summary">
<CheckBoxPreference
android:id="@+id/checkBoxPref1"
android:key="checkBoxPref1"
android:summary="@string/checkBoxPref1"
android:defaultValue="false"/>
<CheckBoxPreference
android:id="@+id/checkBoxPref2"
android:key="checkBoxPref2"
android:summary="@string/checkBoxPref2"
android:defaultValue="true"/>
<CheckBoxPreference
android:id="@+id/checkBoxPref3"
android:key="checkBoxPref3"
android:summary="@string/checkBoxPref3"
android:defaultValue="false"/>
</PreferenceCategory>
</PreferenceScreen>

请告诉我这里有什么问题!

提前致谢。

最佳答案

您需要制作自己的布局来显示标题和摘要。

<PreferenceCategory
android:key="prefNotification"
android:title="@string/prefNotification"
android:summary="@string/pref_notify_summary"
android:layout="@layout/custom_preference_category">

并创建 custom_preference_category.xml

<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">

<TextView
android:id="@android:id/title"
android:layout_width="match_parent"
android:layout_height="wrap_content"
style="?android:attr/listSeparatorTextViewStyle" />

<TextView
android:id="@android:id/summary"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingLeft="5dp" />
</LinearLayout>

随意调整布局以满足您的需要

关于java - 为什么即使在 settings.xml 文件中声明了 PreferenceCategory 的摘要也没有得到它?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32994191/

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