23 lines
723 B
XML
23 lines
723 B
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="match_parent"
|
|
android:visibility="gone">
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_above="@+id/bt_retry"
|
|
android:layout_centerHorizontal="true"
|
|
android:layout_centerVertical="true"
|
|
android:layout_marginBottom="20dp"
|
|
android:text="@string/screen_file_browser_no_connection_message"
|
|
android:textSize="18sp" />
|
|
|
|
<Button
|
|
android:id="@+id/bt_retry"
|
|
style="@style/AppTheme.RetryButton"
|
|
android:text="@string/screen_file_browser_no_connection_button" />
|
|
|
|
</RelativeLayout>
|