mirror of
https://github.com/SoPat712/TrackCovid19.git
synced 2026-02-09 15:25:08 -05:00
35 lines
1.4 KiB
XML
Executable File
35 lines
1.4 KiB
XML
Executable File
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout android:id="@+id/root"
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="@dimen/table_view_row_header_width"
|
|
android:layout_height="@dimen/table_view_cell_height"
|
|
android:background="@color/unselected_header_background_color">
|
|
|
|
<LinearLayout
|
|
android:id="@+id/row_header_container"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:gravity="center_vertical"
|
|
android:orientation="vertical">
|
|
|
|
<TextView
|
|
android:id="@+id/row_header_textview"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:ellipsize="end"
|
|
android:gravity="center"
|
|
android:maxLines="1"
|
|
android:textColor="@color/unselected_text_color"
|
|
android:textSize="@dimen/table_view_default_text_size"
|
|
tools:text="Row Data"/>
|
|
|
|
</LinearLayout>
|
|
|
|
<View
|
|
android:layout_width="1px"
|
|
android:layout_height="match_parent"
|
|
android:layout_alignParentRight="true"
|
|
android:background="@color/separator_color"
|
|
android:layout_alignParentEnd="true" />
|
|
</RelativeLayout> |