mirror of
https://github.com/sismics/docs.git
synced 2025-03-04 12:15:33 +01:00
77 lines
2.6 KiB
XML
77 lines
2.6 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="match_parent"
|
|
android:padding="16dp">
|
|
|
|
<LinearLayout
|
|
android:id="@+id/layout"
|
|
android:visibility="gone"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal">
|
|
|
|
<TextView
|
|
android:layout_width="120dp"
|
|
android:layout_height="wrap_content"
|
|
android:textStyle="bold"
|
|
android:gravity="end"
|
|
android:textSize="16sp"
|
|
android:text="@string/email"/>
|
|
|
|
<TextView
|
|
android:id="@+id/emailTextView"
|
|
android:layout_marginLeft="12dp"
|
|
android:layout_marginStart="12dp"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:ellipsize="end"
|
|
android:maxLines="1"
|
|
android:textSize="16sp"
|
|
android:text="user1@sismicsdocs.com"/>
|
|
|
|
</LinearLayout>
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal">
|
|
|
|
<TextView
|
|
android:layout_width="120dp"
|
|
android:layout_height="wrap_content"
|
|
android:textStyle="bold"
|
|
android:gravity="end"
|
|
android:textSize="16sp"
|
|
android:text="@string/storage_quota"/>
|
|
|
|
<TextView
|
|
android:id="@+id/quotaTextView"
|
|
android:layout_marginLeft="12dp"
|
|
android:layout_marginStart="12dp"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:ellipsize="end"
|
|
android:maxLines="1"
|
|
android:textSize="16sp"
|
|
android:text="35/500 MB"/>
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|
|
|
|
<ProgressBar
|
|
android:id="@+id/progressBar"
|
|
style="?android:attr/progressBarStyleLarge"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:visibility="visible"
|
|
android:layout_centerInParent="true"
|
|
android:indeterminate="true" />
|
|
|
|
</RelativeLayout> |