You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
93 lines
3.2 KiB
93 lines
3.2 KiB
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- Copyright (C) 2013 The Android Open Source Project
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
-->
|
|
|
|
<com.android.documentsui.sidebar.RootItemView
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:minHeight="52dp"
|
|
android:paddingStart="24dp"
|
|
android:gravity="center_vertical"
|
|
android:orientation="horizontal"
|
|
android:baselineAligned="false"
|
|
android:background="@drawable/root_item_background">
|
|
|
|
<FrameLayout
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="@dimen/icon_size"
|
|
android:duplicateParentState="true">
|
|
|
|
<ImageView
|
|
android:id="@android:id/icon"
|
|
android:layout_width="@dimen/root_icon_size"
|
|
android:layout_height="match_parent"
|
|
android:scaleType="centerInside"
|
|
android:contentDescription="@null"
|
|
android:duplicateParentState="true" />
|
|
|
|
</FrameLayout>
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:paddingStart="16dp"
|
|
android:paddingTop="8dp"
|
|
android:paddingBottom="8dp"
|
|
android:orientation="vertical"
|
|
android:layout_weight="1">
|
|
|
|
<TextView
|
|
android:id="@android:id/title"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:singleLine="true"
|
|
android:ellipsize="end"
|
|
android:textAlignment="viewStart"
|
|
android:textAppearance="@style/DrawerMenuPrimary" />
|
|
|
|
<TextView
|
|
android:id="@android:id/summary"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:singleLine="true"
|
|
android:ellipsize="end"
|
|
android:textAlignment="viewStart"
|
|
android:textAppearance="@style/DrawerMenuSecondary" />
|
|
|
|
</LinearLayout>
|
|
|
|
<include layout="@layout/root_vertical_divider" />
|
|
|
|
<FrameLayout
|
|
android:id="@+id/action_icon_area"
|
|
android:layout_width="@dimen/button_touch_size"
|
|
android:layout_height="@dimen/button_touch_size"
|
|
android:paddingEnd="@dimen/grid_padding_horiz"
|
|
android:duplicateParentState="true"
|
|
android:visibility="gone">
|
|
|
|
<ImageView
|
|
android:id="@+id/action_icon"
|
|
android:focusable="false"
|
|
android:layout_width="@dimen/root_action_icon_size"
|
|
android:layout_height="match_parent"
|
|
android:layout_gravity="center"
|
|
android:scaleType="centerInside"/>
|
|
|
|
</FrameLayout>
|
|
|
|
</com.android.documentsui.sidebar.RootItemView>
|