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

32 lines
1.1 KiB
XML

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