【问题标题】:Radio button list on AndroidAndroid 上的单选按钮列表
【发布时间】:2012-08-20 15:18:13
【问题描述】:

我希望在选择 PreferenceActivity 中的首选项时显示一个带有单选按钮的列表(例如在默认图库应用幻灯片中的 HTC 感觉上选择音乐首选项时)。 我不想使用片段,因为上面的模型正在运行 Gingerbread 并且不支持片段。 该列表的底部也应该有按钮。这是一种 ListPreference。但是,就像自定义的 ListPreference 一样(这样它就比默认的单个按钮更多,并且列表占据了整个屏幕) 那么,如何显示这样的列表呢?

【问题讨论】:

    标签: android radio-button sharedpreferences preference listpreference


    【解决方案1】:

    对于带有单选按钮的列表首选项,请使用此

    <ListPreference
        android:entries="@array/scheme_choices"
        android:entryValues="@array/scheme_values"
        android:key="scheme"
        android:title="Scheme" />
    

    在 string.xml 文件中添加所需的值

    <string-array name="scheme_values">
        <item>one</item>
        <item>two</item>
    </string-array>
    

    价值观

    <string-array name="scheme_choices">
        <item>One</item>
        <item>Two</item>
    </string-array>
    

    【讨论】:

    • 谢谢,但我不想要 ListPreference。我想使用 Preference.A Preference,单击它会导致显示各种 ListPreference。
    • 是的。我知道 ListPreference 是什么,但我不想使用它。您知道如何在单击首选项时显示单选按钮列表吗?应该在 Preference.OnClickListener 中完成吗?
    【解决方案2】:

    将其用作列表项的 TextView:

    <CheckedTextView xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/radio_text_view"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:gravity="center_vertical" 
        android:paddingLeft="3dip"
        android:checkMark="?android:attr/listChoiceIndicatorSingle"
        android:paddingRight="3dip"
        android:padding="10dip"    
        android:singleLine="true"
        android:ellipsize="marquee" /> 
    

    【讨论】:

    • 这部分不可见,不知道为什么:schemas.android.com/apk/res/android" android:id="@+id/radio_text_view" android:layout_width="match_parent" android :layout_height="wrap_content" android:gravity="center_vertical" android:paddingLeft="3dip" android:checkMark="?android:attr/listChoiceIndicatorSingle" android:paddingRight="3dip" android:padding="10dip" android:singleLine= “真” android:ellipsize="marquee" />
    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2011-10-19
    • 2012-04-09
    • 2017-09-16
    相关资源
    最近更新 更多