generated from Grigo/AndroidTemplate
56 lines
1.8 KiB
XML
56 lines
1.8 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="vertical">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal"
|
|
android:paddingBottom="4dp">
|
|
|
|
<TextView
|
|
android:id="@+id/compareTxHeader"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:textColor="#E94560"
|
|
android:textSize="12sp"
|
|
android:textStyle="bold" />
|
|
|
|
<TextView
|
|
android:id="@+id/compareRxHeader"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:textColor="#4FC3F7"
|
|
android:textSize="12sp"
|
|
android:textStyle="bold" />
|
|
</LinearLayout>
|
|
|
|
<TableLayout
|
|
android:id="@+id/compareDynamicTable"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:stretchColumns="1,2" />
|
|
|
|
<com.google.android.material.button.MaterialButton
|
|
android:id="@+id/compareStaticToggle"
|
|
style="@style/Widget.Material3.Button.TextButton"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:minHeight="0dp"
|
|
android:padding="0dp"
|
|
android:text="@string/stats_static_toggle"
|
|
android:textSize="12sp" />
|
|
|
|
<TableLayout
|
|
android:id="@+id/compareStaticTable"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:stretchColumns="1,2"
|
|
android:visibility="gone" />
|
|
|
|
</LinearLayout>
|