我有列表项,我想在视图的左侧添加一个项目全高的矩形,这是列表项xml(抱歉奇怪的格式化):
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/list_item"
android:background="@drawable/rowselector"
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:paddingTop="5sp"
android:paddingBottom="5sp"
android:paddingLeft="10sp"
android:paddingRight="10sp">
<View
android:id="@+id/stop_color_shape"
android:background="@drawable/stop_color_shape"
android:layout_height="fill_parent"
android:layout_width="20dp"
android:layout_alignParentTop="true"
android:layout_alignParentLeft="true"
/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:text="Name"
android:textStyle="bold"
android:id="@+id/text"
android:textColor="@color/text"
android:textSize="18sp"
android:layout_toLeftOf="@+id/star"
android:layout_centerVertical="true"/>
<CheckBox
android:focusable="false"
android:layout_width="wrap_content"
android:layout_alignParentRight="true"
android:button="@drawable/btn_star"
android:id="@+id/star"
android:layout_height="fill_parent"
android:layout_alignParentTop="true"/>
当View的(stop_color_shape)layout_height设置为20dp时,它会显示,当它设置为fill_parent时它不会
drawable(stop_color_shape)是:
<shape
xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<solid
android:color="#FFFFFF"/>
<stroke
android:width="3dp"
android:color="#FFFFFF"/>
</shape>
答案 0 :(得分:0)
这是因为RelativeLayout
的身高设置为wrap_content
。将其更改为fill_parent
即可。
答案 1 :(得分:0)
在整个过程中使用填充父项或在整个过程中使用wrap_content以避免混淆。并跟踪ui设计