diff options
author | Allan Wang <me@allanwang.ca> | 2018-04-12 18:50:58 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-12 18:50:58 -0400 |
commit | d9e2562267e549ee407e683262406581f2c4888e (patch) | |
tree | 0dc063913b00a9dc4f10d0d5c7085218c2cc17c3 /app/src/main/res/layout/activity_invalid.xml | |
parent | 42e57597bcc3216778e9f14389f751eb62da1bd5 (diff) | |
download | frost-d9e2562267e549ee407e683262406581f2c4888e.tar.gz frost-d9e2562267e549ee407e683262406581f2c4888e.tar.bz2 frost-d9e2562267e549ee407e683262406581f2c4888e.zip |
Misc (#865)
* Clean up git code
* Update download link
* Update theme
* Reorder settings, resolvees #856
* Do not log undeliverable exception
* Handle potential lack of webview
* Set notification epoch default to now, resolves #857
* Fix notification epoch time init
* Update changelog
* Update theme
* Add slack url, resolves #880
* Prepare for image update
Diffstat (limited to 'app/src/main/res/layout/activity_invalid.xml')
-rw-r--r-- | app/src/main/res/layout/activity_invalid.xml | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/app/src/main/res/layout/activity_invalid.xml b/app/src/main/res/layout/activity_invalid.xml new file mode 100644 index 00000000..dba1375b --- /dev/null +++ b/app/src/main/res/layout/activity_invalid.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 |