怎么把彩色丝带放在listview每个项目的一边?

时间:2014-05-17 08:25:04

标签: android listview android-listview listviewitem

我希望用户界面与我的应用程序的后续照片相同。我的意思是对于listview的每个项目都有不同的颜色,只是在一个程序上。但我不知道我应该怎么做flat UI

1 个答案:

答案 0 :(得分:0)

对于列表项目布局,您可以尝试以下内容......

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="horizontal"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" >

    <TextView
        android:id="@+id/textView1"
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:layout_weight="0.9" >
    </TextView>
    <View
        android:id="@+id/sidebar"
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:layout_weight="0.1" >
    </View>
</LinearLayout>

android:layout_width="0dp"android:layout_weight一起使用将意味着视图将按比例调整大小。在我的示例中,TextView的宽度为90%,View的宽度为10% - 您可以调整比率以获得所需的效果。

完成后,您只需覆盖列表适配器的getView方法即可找到&#34;侧边栏&#34; View并设置其背景颜色。