38 lines
1.1 KiB
XML
38 lines
1.1 KiB
XML
<?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="horizontal"
|
|
android:background="@android:color/transparent"
|
|
>
|
|
|
|
<LinearLayout
|
|
android:id="@+id/parent_layout"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal"
|
|
>
|
|
|
|
<TextView
|
|
android:id="@+id/tv_text"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="Checklist"
|
|
android:textColor="@color/black"
|
|
android:textStyle="bold"
|
|
android:gravity="center_vertical"
|
|
android:paddingTop="2dp"
|
|
android:paddingBottom="@dimen/custom_margin"
|
|
android:padding="10dp"
|
|
android:textSize="@dimen/text_size_xsmall"
|
|
android:paddingLeft="@dimen/custom_margin"/>
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|