我希望我的列表项看起来像这样 -
我有一个包含%值的项目列表。这种布局看起来很吸引人。谁能告诉我怎么能这样做呢?
这是我试过的代码 -
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:orientation="horizontal"
android:layout_height="wrap_content">
<LinearLayout
android:layout_width="fill_parent"
android:orientation="horizontal"
android:background="#98F5FF"
android:layout_height="wrap_content"
>
</LinearLayout>
<LinearLayout android:layout_width="fill_parent"
android:orientation="horizontal"
android:layout_height="wrap_content">
<TextView android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:id="@+id/text1"
android:textSize="25dip"
android:textColor="#FFFFFF"
android:text="This is text1"/>
</LinearLayout>
</RelativeLayout>
答案 0 :(得分:1)
您可以使用绿色背景的线性布局的相对布局和放置所有项目的另一个布局,以便背景不会覆盖它们。根据百分比更改背景线性布局的宽度。 这是示意图xml的样子:
<RelativeLayout>
<LinearLayout /> // for background
<LinearLayout android:background="@android:color/transparent">
//all other elements in your view go here
</LinearLayout>
</RelativeLayout>
按myLinearLayout.getLayoutParams().height = x;
答案 1 :(得分:0)
您需要使用自定义列表适配器。这个tutorial会对您有所帮助。