48 lines
1.9 KiB
XML
48 lines
1.9 KiB
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<ScrollView
|
||
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent">
|
||
|
|
||
|
<android.support.constraint.ConstraintLayout
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:paddingBottom="20dp">
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/tvUpgradeToLtm"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_marginStart="32dp"
|
||
|
android:layout_marginTop="16dp"
|
||
|
android:text="Upgrade to LTM"
|
||
|
app:layout_constraintStart_toStartOf="parent"
|
||
|
app:layout_constraintTop_toTopOf="parent" />
|
||
|
|
||
|
<Button
|
||
|
android:id="@+id/btnUpgradeToLtm"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_marginTop="8dp"
|
||
|
android:layout_marginEnd="32dp"
|
||
|
android:text="Upgrade"
|
||
|
app:layout_constraintEnd_toEndOf="parent"
|
||
|
app:layout_constraintStart_toStartOf="@+id/tvUpgradeToLtm"
|
||
|
app:layout_constraintTop_toBottomOf="@id/tvUpgradeToLtm" />
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/tvAlreadyLtm"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_marginEnd="32dp"
|
||
|
android:layout_marginStart="32dp"
|
||
|
android:layout_marginTop="8dp"
|
||
|
android:text="Already upgraded to LTM"
|
||
|
app:layout_constraintEnd_toEndOf="parent"
|
||
|
app:layout_constraintStart_toStartOf="parent"
|
||
|
app:layout_constraintTop_toBottomOf="@id/btnUpgradeToLtm" />
|
||
|
|
||
|
</android.support.constraint.ConstraintLayout>
|
||
|
|
||
|
</ScrollView>
|