nextcloud-android/res/layout/drawer.xml

103 lines
4 KiB
XML
Raw Normal View History

2015-05-28 12:07:14 +03:00
<?xml version="1.0" encoding="utf-8"?>
<!--
ownCloud Android client application
Copyright (C) 2015 ownCloud Inc.
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License version 2,
as published by the Free Software Foundation.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
-->
<merge xmlns:android="http://schemas.android.com/apk/res/android">
<RelativeLayout
android:id="@+id/left_drawer"
2015-08-14 16:40:22 +03:00
android:layout_width="240dp"
android:layout_height="match_parent"
android:layout_gravity="start"
android:gravity="center"
android:orientation="vertical"
android:fitsSystemWindows="true"
android:background="@color/background_color"
>
2015-05-28 12:07:14 +03:00
<!--TODO re-enable when "Accounts" is available in Navigation Drawer-->
<!--<LinearLayout-->
<!--android:layout_width="match_parent"-->
<!--android:layout_height="wrap_content"-->
<!--android:layout_margin="5dp">-->
2015-05-28 12:07:14 +03:00
<!--<ImageView-->
<!--android:id="@+id/drawer_userIcon"-->
<!--android:layout_width="40dp"-->
<!--android:layout_height="40dp"-->
<!--android:src="@drawable/abc_ab_bottom_solid_dark_holo" />-->
2015-05-28 12:07:14 +03:00
<!--<TextView-->
<!--android:id="@+id/drawer_username"-->
<!--android:layout_width="wrap_content"-->
<!--android:layout_height="wrap_content"-->
<!--android:layout_gravity="center_vertical"-->
<!--android:layout_marginLeft="5dp"-->
<!--android:layout_marginStart="5dp"-->
<!--android:textAppearance="?android:attr/textAppearanceLarge" />-->
2015-05-28 12:07:14 +03:00
<!--</LinearLayout>-->
2015-05-28 12:07:14 +03:00
<!--<TextView-->
<!--android:layout_width="fill_parent"-->
<!--android:layout_height="2dip"-->
<!--android:background="@color/list_item_lastmod_and_filesize_text" />-->
2015-05-28 12:07:14 +03:00
<ListView
android:id="@+id/drawer_list"
android:choiceMode="singleChoice"
android:layout_width="fill_parent"
android:layout_height="match_parent"
android:background="@color/background_color"
2016-01-13 02:06:07 +03:00
android:divider="@null"
android:dividerHeight="0dp"
android:paddingTop="100dp" />
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="100dp"
android:paddingTop="@dimen/standard_padding"
android:paddingBottom="@dimen/standard_padding"
android:background="@color/drawer_header_color">
<ImageView
android:id="@+id/itemIcon"
2015-12-17 17:49:55 +03:00
android:layout_width="24dp"
android:layout_height="24dp"
android:layout_marginLeft="@dimen/standard_padding"
android:layout_marginBottom="3dp"
android:layout_gravity="bottom"
android:src="@drawable/ic_account_circle"
/>
<TextView
android:id="@+id/drawer_username"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom"
android:gravity="bottom"
android:orientation="vertical"
android:text="@string/app_name"
android:textColor="#FFF"
android:paddingLeft="22dp"
android:paddingRight="@dimen/standard_padding"
2015-08-12 19:54:27 +03:00
android:textSize="24sp"
android:ellipsize="end"
android:singleLine="true"
/>
</LinearLayout>
</RelativeLayout>
</merge>