blob: 5834820ee7f2965ddfe3884792588e5d3e41a817 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<!--TextView that aligns to the bottom-->
<androidx.appcompat.widget.AppCompatTextView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@id/kau_pref_inner_content"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom"
android:background="@null"
android:clickable="false"
android:focusable="false"
android:gravity="bottom|end"
android:paddingBottom="@dimen/kau_padding_normal" />
|