我希望用户界面与我的应用程序的后续照片相同。我的意思是对于listview的每个项目都有不同的颜色,只是在一个程序上。但我不知道我应该怎么做
答案 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
并设置其背景颜色。