62 lines
2 KiB
XML
62 lines
2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:id="@+id/insightstatusmasterlayout"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:orientation="vertical">
|
|
|
|
<LinearLayout
|
|
android:id="@+id/insightstatuslayout"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal"
|
|
android:paddingBottom="5dp">
|
|
|
|
<TextView
|
|
android:id="@+id/insightstatuslabel"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:gravity="end"
|
|
android:paddingRight="5dp"
|
|
android:text="Label"
|
|
android:textSize="14sp" />
|
|
|
|
<TextView
|
|
android:id="@+id/insightstatusspacer"
|
|
android:layout_width="5dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="0"
|
|
android:gravity="center_horizontal"
|
|
android:paddingEnd="2dp"
|
|
android:paddingStart="2dp"
|
|
android:text=":"
|
|
android:textColor="@android:color/white"
|
|
android:textSize="14sp" />
|
|
|
|
<TextView
|
|
android:id="@+id/insightstatusvalue"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:gravity="start"
|
|
android:paddingLeft="5dp"
|
|
android:text="Value"
|
|
android:textColor="@android:color/white"
|
|
android:textSize="14sp" />
|
|
|
|
</LinearLayout>
|
|
|
|
<View
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="2dip"
|
|
android:layout_marginBottom="5dp"
|
|
android:layout_marginLeft="20dp"
|
|
android:layout_marginRight="20dp"
|
|
android:layout_marginTop="0dp"
|
|
android:background="@color/listdelimiter" />
|
|
</LinearLayout>
|
|
|