UntrackMe-app-android-redir.../app/src/main/res/layout/popup_unshorten.xml

32 lines
1.1 KiB
XML
Raw Normal View History

2020-02-18 11:26:29 +01:00
<?xml version="1.0" encoding="utf-8"?>
2020-02-18 12:25:20 +01:00
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
2020-02-18 11:26:29 +01:00
android:layout_width="match_parent"
2020-02-18 12:25:20 +01:00
android:layout_height="wrap_content"
android:padding="@dimen/fab_margin">
2020-02-18 11:26:29 +01:00
<RelativeLayout
android:id="@+id/progress"
android:layout_width="match_parent"
android:layout_height="wrap_content">
2020-02-18 12:25:20 +01:00
2020-02-18 11:26:29 +01:00
<ProgressBar
android:id="@+id/loading"
2020-02-18 12:25:20 +01:00
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true" />
<TextView
android:layout_width="match_parent"
2020-02-18 11:26:29 +01:00
android:layout_height="wrap_content"
2020-02-18 12:25:20 +01:00
android:layout_below="@+id/loading"
android:layout_marginTop="10dp"
android:gravity="center"
android:text="@string/resolving_shortened" />
2020-02-18 11:26:29 +01:00
</RelativeLayout>
2020-02-18 12:25:20 +01:00
2020-02-18 11:26:29 +01:00
<TextView
2020-02-18 12:25:20 +01:00
android:id="@+id/indications"
2020-02-18 11:26:29 +01:00
android:layout_width="match_parent"
android:layout_height="wrap_content"
2020-02-18 12:25:20 +01:00
android:visibility="gone" />
2020-02-18 11:26:29 +01:00
</RelativeLayout>