使视图填充包装内容父布局
Make a view fill a wrap content parent layout
我正在尝试为组织 HW 的 android 应用程序添加 classes 的颜色编码。我试图通过在颜色为 class 的一侧添加一个条来做到这一点。在图像中,我希望整个布局包裹文本的高度,然后让形状 A 填充该布局。我尝试在形状 A 上使用匹配父项,但没有用。在那之后,我尝试做的是以编程方式测量相对布局并将形状 A 设置为一直有效的高度,除非文本必须换行到两行。感谢所有帮助。谢谢!
XML代码:id为side_bar的电视是我要添加的侧边栏
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<RelativeLayout
android:id="@+id/rel_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#FFFFFF">
<RelativeLayout
android:id="@+id/check_layout"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_centerVertical="true">
<change.com.puddl.CheckBox
android:id="@+id/checkBox"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_centerVertical="true"
android:background="#4CAF50" />
<ImageView
android:id="@+id/check"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:paddingLeft="10dp"
android:paddingRight="10dp"
android:src="@drawable/ic_check_white_24dp"
android:tint="#4CAF50"
android:visibility="gone" />
</RelativeLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_toRightOf="@id/check_layout"
android:background="#FFFFFF"
android:orientation="vertical">
<TextView
android:id="@+id/title"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="8dp"
android:layout_marginRight="8dp"
android:layout_marginTop="4dp"
android:text="This is a summary..."
android:textColor="#727272"
android:textSize="20dp" />
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="4dp"
android:layout_marginLeft="8dp"
android:layout_marginRight="8dp"
android:layout_marginTop="8dp">
<TextView
android:id="@+id/Due"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
android:text="Due"
android:textColor="#888"
android:textSize="12sp" />
<TextView
android:id="@+id/Course"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentRight="true"
android:text="Course"
android:textSize="12sp" />
</RelativeLayout>
</LinearLayout>
<TextView
android:id="@+id/side_bar"
android:layout_width="4dp"
android:layout_height="match_parent"
android:layout_alignParentLeft="true"
android:background="#727272" />
</RelativeLayout>
<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="#DDDDDD" />
<View
android:id="@+id/topShadow"
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="#DDDDDD"
android:visibility="gone" />
</LinearLayout>
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/row_base"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal"
android:background="@color/black">
<!--your shape-->
<LinearLayout
android:layout_width="15dp"
android:layout_height="match_parent"
android:orientation="vertical"
android:background="@color/redDark">
</LinearLayout>
<!--check icon-->
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:orientation="vertical"
android:background="@color/gray_light1">
<ImageView
android:id="@+id/check"
android:layout_gravity="center_vertical"
android:paddingLeft="10dp"
android:paddingRight="10dp"
android:src="@drawable/checked"
android:tint="#4CAF50"
android:layout_width="wrap_content"
android:layout_height="match_parent" />
</LinearLayout>
<!--COntent, texts-->
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:background="@color/gray_light3">
<TextView
android:id="@+id/title"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="8dp"
android:layout_marginRight="8dp"
android:layout_marginTop="8dp"
android:layout_marginBottom="8dp"
android:text="This is a summary..."
android:textColor="@color/black"
android:textSize="20dp" />
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/gray_light2">
<TextView
android:id="@+id/Due"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
android:text="Due"
android:textColor="@color/black"
android:textSize="12sp" />
<TextView
android:id="@+id/Course"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentRight="true"
android:text="Course"
android:textColor="@color/black"
android:textSize="12sp" />
</RelativeLayout>
</LinearLayout>
</LinearLayout>
当您将其用作列表项时,它将具有良好的视觉效果。
我正在尝试为组织 HW 的 android 应用程序添加 classes 的颜色编码。我试图通过在颜色为 class 的一侧添加一个条来做到这一点。在图像中,我希望整个布局包裹文本的高度,然后让形状 A 填充该布局。我尝试在形状 A 上使用匹配父项,但没有用。在那之后,我尝试做的是以编程方式测量相对布局并将形状 A 设置为一直有效的高度,除非文本必须换行到两行。感谢所有帮助。谢谢!
XML代码:id为side_bar的电视是我要添加的侧边栏
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<RelativeLayout
android:id="@+id/rel_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#FFFFFF">
<RelativeLayout
android:id="@+id/check_layout"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_centerVertical="true">
<change.com.puddl.CheckBox
android:id="@+id/checkBox"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_centerVertical="true"
android:background="#4CAF50" />
<ImageView
android:id="@+id/check"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:paddingLeft="10dp"
android:paddingRight="10dp"
android:src="@drawable/ic_check_white_24dp"
android:tint="#4CAF50"
android:visibility="gone" />
</RelativeLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_toRightOf="@id/check_layout"
android:background="#FFFFFF"
android:orientation="vertical">
<TextView
android:id="@+id/title"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="8dp"
android:layout_marginRight="8dp"
android:layout_marginTop="4dp"
android:text="This is a summary..."
android:textColor="#727272"
android:textSize="20dp" />
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="4dp"
android:layout_marginLeft="8dp"
android:layout_marginRight="8dp"
android:layout_marginTop="8dp">
<TextView
android:id="@+id/Due"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
android:text="Due"
android:textColor="#888"
android:textSize="12sp" />
<TextView
android:id="@+id/Course"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentRight="true"
android:text="Course"
android:textSize="12sp" />
</RelativeLayout>
</LinearLayout>
<TextView
android:id="@+id/side_bar"
android:layout_width="4dp"
android:layout_height="match_parent"
android:layout_alignParentLeft="true"
android:background="#727272" />
</RelativeLayout>
<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="#DDDDDD" />
<View
android:id="@+id/topShadow"
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="#DDDDDD"
android:visibility="gone" />
</LinearLayout>
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/row_base"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal"
android:background="@color/black">
<!--your shape-->
<LinearLayout
android:layout_width="15dp"
android:layout_height="match_parent"
android:orientation="vertical"
android:background="@color/redDark">
</LinearLayout>
<!--check icon-->
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:orientation="vertical"
android:background="@color/gray_light1">
<ImageView
android:id="@+id/check"
android:layout_gravity="center_vertical"
android:paddingLeft="10dp"
android:paddingRight="10dp"
android:src="@drawable/checked"
android:tint="#4CAF50"
android:layout_width="wrap_content"
android:layout_height="match_parent" />
</LinearLayout>
<!--COntent, texts-->
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:background="@color/gray_light3">
<TextView
android:id="@+id/title"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="8dp"
android:layout_marginRight="8dp"
android:layout_marginTop="8dp"
android:layout_marginBottom="8dp"
android:text="This is a summary..."
android:textColor="@color/black"
android:textSize="20dp" />
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/gray_light2">
<TextView
android:id="@+id/Due"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
android:text="Due"
android:textColor="@color/black"
android:textSize="12sp" />
<TextView
android:id="@+id/Course"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentRight="true"
android:text="Course"
android:textColor="@color/black"
android:textSize="12sp" />
</RelativeLayout>
</LinearLayout>
</LinearLayout>
当您将其用作列表项时,它将具有良好的视觉效果。