mirror of
https://github.com/sudoxnym/habitica-android.git
synced 2026-07-27 17:33:22 +00:00
24 lines
883 B
XML
24 lines
883 B
XML
|
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
|
android:orientation="horizontal"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="48dp"
|
||
|
|
android:paddingLeft="@dimen/drawer_padding"
|
||
|
|
android:paddingRight="@dimen/drawer_padding"
|
||
|
|
android:gravity="center_vertical">
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/titleTextView"
|
||
|
|
android:layout_width="0dp"
|
||
|
|
android:layout_weight="1"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
style="@style/Body1"/>
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/additionalInfoView"
|
||
|
|
style="@style/Pill.Selected"
|
||
|
|
android:background="@drawable/pill_bg_purple_200"
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:visibility="gone"/>
|
||
|
|
</LinearLayout>
|