Adding deprecation dialog. (#492)
Additional improvements. Final improvements. Adding deprecation dialog. Reviewed-on: https://gitea.com/gitnex/GitNex/pulls/492 Reviewed-by: M M Arif <mmarif@swatian.com>
This commit is contained in:
37
app/src/main/res/layout/layout_deprecation_dialog.xml
Normal file
37
app/src/main/res/layout/layout_deprecation_dialog.xml
Normal file
@ -0,0 +1,37 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:orientation="vertical"
|
||||
android:paddingLeft="30dp"
|
||||
android:paddingTop="20dp"
|
||||
android:paddingRight="30dp"
|
||||
android:paddingBottom="20dp">
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="center_horizontal"
|
||||
android:layout_marginTop="15dp"
|
||||
android:text="@string/screamingInFearEmoticon"
|
||||
android:textColor="?attr/primaryTextColor"
|
||||
android:textSize="50sp" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/customTitle"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="15dp"
|
||||
android:gravity="center_horizontal"
|
||||
android:textColor="?attr/primaryTextColor"
|
||||
android:textSize="16sp" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/customMessage"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="5dp"
|
||||
android:gravity="center_horizontal"
|
||||
android:textColor="?attr/primaryTextColor" />
|
||||
|
||||
</LinearLayout>
|
Reference in New Issue
Block a user