自定义微调器样式

时间:2012-08-13 12:14:21

标签: android android-layout android-ui

如何使用xml设置/自定义微调器如下所示? 我可以制作带边框的白色背景,但我不能在左边设置图标,在右边设置箭头。

enter image description here

1 个答案:

答案 0 :(得分:0)

如果您的问题是布局将图标设置为左侧,箭头设置为右侧,则以下情况应该有效。

<RelativeLayout
    android:layout_width="fill_parent"
    android:layout_height="wrap_content" />

    <ImageView
        android:id="@+id/icon"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true" />

    <TextView
        android:id="@+id/name"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_toRightOf="@id/icon" />

    <ImageView
        android:id="@+id/arrow"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentRight="true" />

</RelativeLayout>

我在工作,所以我无法测试,但我认为它应该有用。