cbce47001e
Now with treatment for disabled and selected grid items. Inverts text and icons in selected drawer items. Follows upstream color changes to accent color. Disables some verbose logging. Bug: 15836082, 17281688 Change-Id: I97a1c055a2f1a537388a8f5669147618e9698870
74 lines
2.7 KiB
XML
74 lines
2.7 KiB
XML
<?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.
|
|
-->
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:minHeight="48dp"
|
|
android:paddingStart="@dimen/list_item_padding"
|
|
android:paddingEnd="@dimen/list_item_padding"
|
|
android:gravity="center_vertical"
|
|
android:orientation="horizontal"
|
|
android:baselineAligned="false"
|
|
android:background="@drawable/item_root_background">
|
|
|
|
<FrameLayout
|
|
android:layout_width="@dimen/icon_size"
|
|
android:layout_height="@dimen/icon_size"
|
|
android:layout_marginEnd="16dp"
|
|
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:paddingTop="8dp"
|
|
android:paddingBottom="8dp"
|
|
android:orientation="vertical">
|
|
|
|
<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="@android:style/TextAppearance.Material.Body1"
|
|
android:textColor="@color/item_root_primary_text" />
|
|
|
|
<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="@android:style/TextAppearance.Material.Body1"
|
|
android:textColor="@color/item_root_primary_text" />
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|