mirror of
https://github.com/sismics/docs.git
synced 2025-04-16 17:00:37 +02:00
130 lines
4.7 KiB
XML
130 lines
4.7 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
tools:ignore="InconsistentLayout"
|
|
android:id="@+id/drawer_layout"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<!-- Main content -->
|
|
|
|
<RelativeLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<com.sismics.docs.ui.view.FileViewPager
|
|
android:id="@+id/fileViewPager"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"/>
|
|
|
|
<ProgressBar
|
|
android:id="@+id/progressBar"
|
|
style="?android:attr/progressBarStyle"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_centerInParent="true"
|
|
android:indeterminate="true"/>
|
|
|
|
<TextView
|
|
android:id="@+id/filesEmptyView"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:visibility="gone"
|
|
android:text="@string/no_files"
|
|
android:fontFamily="sans-serif-light"
|
|
android:textSize="16sp"
|
|
android:layout_centerInParent="true"/>
|
|
|
|
</RelativeLayout>
|
|
|
|
<!-- Right drawer -->
|
|
|
|
<LinearLayout
|
|
android:id="@+id/right_drawer"
|
|
android:layout_width="300dp"
|
|
android:layout_height="match_parent"
|
|
android:layout_gravity="end"
|
|
android:orientation="vertical"
|
|
android:clickable="true"
|
|
android:background="#fff"
|
|
android:elevation="5dp">
|
|
|
|
<!-- Document metadata -->
|
|
|
|
<RelativeLayout
|
|
android:id="@+id/detailLayout"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:padding="12dp">
|
|
|
|
<TextView
|
|
android:id="@+id/createdDateLabel"
|
|
android:layout_width="100dp"
|
|
android:layout_height="24dp"
|
|
android:gravity="center_vertical"
|
|
android:layout_alignParentTop="true"
|
|
android:layout_marginRight="8dp"
|
|
android:layout_marginEnd="8dp"
|
|
android:fontFamily="sans-serif"
|
|
android:text="@string/created_date"/>
|
|
|
|
<TextView
|
|
android:id="@+id/createdDateTextView"
|
|
android:layout_toRightOf="@id/createdDateLabel"
|
|
android:layout_toEndOf="@id/createdDateLabel"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="24dp"
|
|
android:gravity="center_vertical"
|
|
android:layout_alignParentTop="true"
|
|
android:fontFamily="sans-serif-light"/>
|
|
|
|
<TextView
|
|
android:id="@+id/tagTextView"
|
|
android:layout_marginTop="8dp"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_below="@id/createdDateLabel"
|
|
android:layout_marginRight="8dp"
|
|
android:layout_marginEnd="8dp"
|
|
android:maxLines="1"
|
|
android:fontFamily="sans-serif-light"/>
|
|
|
|
<TextView
|
|
android:id="@+id/descriptionTextView"
|
|
android:layout_marginTop="12dp"
|
|
android:layout_below="@id/tagTextView"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:fontFamily="sans-serif-light"/>
|
|
|
|
<ImageView
|
|
android:id="@+id/sharedImageView"
|
|
android:layout_width="24dp"
|
|
android:layout_height="24dp"
|
|
android:src="@drawable/ic_folder_shared_grey600_24dp"
|
|
android:layout_alignParentTop="true"
|
|
android:layout_marginRight="8dp"
|
|
android:layout_marginEnd="8dp"
|
|
android:layout_toLeftOf="@+id/languageImageView"
|
|
android:layout_toStartOf="@+id/languageImageView"/>
|
|
|
|
<ImageView
|
|
android:id="@+id/languageImageView"
|
|
android:layout_width="24dp"
|
|
android:layout_height="24dp"
|
|
android:layout_alignParentRight="true"
|
|
android:layout_alignParentEnd="true"
|
|
android:layout_alignParentTop="true"/>
|
|
|
|
</RelativeLayout>
|
|
|
|
<View
|
|
android:layout_width="match_parent"
|
|
android:layout_height="1dp"
|
|
android:layout_marginRight="12dp"
|
|
android:layout_marginEnd="12dp"
|
|
android:background="#eee"/>
|
|
|
|
</LinearLayout>
|
|
|
|
</android.support.v4.widget.DrawerLayout> |