我不想使用框架提供的Preferences,而是我想创建一个看起来类似的ListView。特别是,我希望它为TextViews使用相同的字体大小和样式。
答案 0 :(得分:9)
这不是ListView本身,而是ListView中出现的子视图。它们是由适配器的getView方法创建的。
要创建类似于Android的视图,您可以使用Android源代码,特别是相关的XML文件布局。例如,preference.xml如下所示:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:minHeight="?android:attr/listPreferredItemHeight"
android:gravity="center_vertical"
android:paddingRight="?android:attr/scrollbarSize">
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="15dip"
android:layout_marginRight="6dip"
android:layout_marginTop="6dip"
android:layout_marginBottom="6dip"
android:layout_weight="1">
<TextView android:id="@+android:id/title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:singleLine="true"
android:textAppearance="?android:attr/textAppearanceLarge"
android:ellipsize="marquee"
android:fadingEdge="horizontal" />
<TextView android:id="@+android:id/summary"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@android:id/title"
android:layout_alignLeft="@android:id/title"
android:textAppearance="?android:attr/textAppearanceSmall"
android:maxLines="4" />
</RelativeLayout>
<!-- Preference should place its actual preference widget here. -->
<LinearLayout android:id="@+android:id/widget_frame"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:gravity="center_vertical"
android:orientation="vertical" />
</LinearLayout>
您将无法直接使用此内容,因为使用的某些常量是Android专用的,您必须进一步深入了解其他xml。
无论如何,你应该考虑到不同版本的Android和不同主题的Android偏好看起来不同,所以请确保你使用Android提供的常量,而不是你自己的硬编码值,以确保你的list-view项类似于Android提供的实际首选项。
答案 1 :(得分:1)
将此属性添加到AndroidManifest.xml
android:theme="@android:style/Preference.PreferenceScreen"
答案 2 :(得分:-1)