diff options
author | Allan Wang <me@allanwang.ca> | 2018-03-21 17:36:53 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-21 17:36:53 -0400 |
commit | f1275cbc38f1819c852f810905c300ae8f64bba4 (patch) | |
tree | 794d0ffe19f09387d5979c710b1b4a6ffe24104d /app/src/main/res/layout | |
parent | d36dfe98a52ced46c5106b28304ae5d245180a7f (diff) | |
download | frost-f1275cbc38f1819c852f810905c300ae8f64bba4.tar.gz frost-f1275cbc38f1819c852f810905c300ae8f64bba4.tar.bz2 frost-f1275cbc38f1819c852f810905c300ae8f64bba4.zip |
Update buildsdk (#808)
* Update changelog
* Add build sdk check
* Remove play store affiliate
* Ignore Overdraw
* Remove theme background
* Add back for transparent
* Fix restart button
Diffstat (limited to 'app/src/main/res/layout')
-rw-r--r-- | app/src/main/res/layout/activity_invalid_sdk.xml | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/app/src/main/res/layout/activity_invalid_sdk.xml b/app/src/main/res/layout/activity_invalid_sdk.xml new file mode 100644 index 00000000..dba1375b --- /dev/null +++ b/app/src/main/res/layout/activity_invalid_sdk.xml @@ -0,0 +1,34 @@ +<?xml version="1.0" encoding="utf-8"?> +<android.support.constraint.ConstraintLayout 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:background="@color/frost_splash_background"> + + <ImageView + android:id="@+id/invalid_icon" + android:layout_width="96dp" + android:layout_height="96dp" + app:layout_constraintBottom_toBottomOf="parent" + app:layout_constraintEnd_toEndOf="parent" + app:layout_constraintHorizontal_bias="0.5" + app:layout_constraintStart_toStartOf="parent" + app:layout_constraintTop_toTopOf="parent" + app:layout_constraintVertical_bias="0.2" /> + + <TextView + android:id="@+id/invalid_text" + android:layout_width="0dp" + android:layout_height="wrap_content" + android:layout_marginEnd="@dimen/kau_activity_horizontal_margin" + android:layout_marginStart="@dimen/kau_activity_horizontal_margin" + android:textAlignment="center" + android:textColor="@android:color/white" + android:textSize="18sp" + app:layout_constraintBottom_toBottomOf="parent" + app:layout_constraintEnd_toEndOf="parent" + app:layout_constraintStart_toStartOf="parent" + app:layout_constraintTop_toBottomOf="@id/invalid_icon" + app:layout_constraintVertical_bias="0.25" /> + +</android.support.constraint.ConstraintLayout>
\ No newline at end of file |