有没有办法将 TextView 添加到 PreferenceScreen 中。我试着想像
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android" >
<EditTextPreference
android:key="key"
android:selectable="false"
android:summary="summary"
android:title="title" >
</EditTextPreference>
</PreferenceScreen>
这个想法是设置 EditText 不可选择。但正如我怀疑的那样,这不是很优雅。