mirror of
https://github.com/sudoxnym/habitica-android.git
synced 2026-07-28 18:06:17 +00:00
20 lines
641 B
XML
20 lines
641 B
XML
|
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
|
<TableRow xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
|
android:layout_marginTop="5dp"
|
||
|
|
android:layout_marginBottom="5dp">
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/tableRowTextView1"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content" />
|
||
|
|
|
||
|
|
<TableLayout
|
||
|
|
android:id="@+id/tableRowAttributesTable"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_marginLeft="5dp"
|
||
|
|
android:stretchColumns="0,1"
|
||
|
|
android:layout_marginBottom="5dp">
|
||
|
|
|
||
|
|
</TableLayout>
|
||
|
|
</TableRow>
|