我想为我的应用程序获取此列表项布局 -
我尝试将相对布局与linearlayout用于文本的颜色和文本视图但是没有获得所需的结果。有人可以帮忙吗? 这是我试过的代码,它没有提供所需的输出 - 这是我试过的代码 - 这是我试过的代码 -
<?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 :(得分:0)
我会在层次结构的顶部使用RelativeLayout
,其中1 LinearLayout
作为底部的第一个布局(对于你说的背景)和另外3个位于顶部的视图其余的元素。在LinearLayout
中,您可以使用android:layout_weight
参数设置所需的绿色背景百分比。