mydongistiny | 06b7e69 | 2018-09-21 09:32:04 -0600 | [diff] [blame^] | 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | <!-- Copyright (C) 2014 The Android Open Source Project |
| 3 | |
| 4 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | you may not use this file except in compliance with the License. |
| 6 | You may obtain a copy of the License at |
| 7 | |
| 8 | http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | |
| 10 | Unless required by applicable law or agreed to in writing, software |
| 11 | distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | See the License for the specific language governing permissions and |
| 14 | limitations under the License. |
| 15 | --> |
| 16 | |
| 17 | <LinearLayout |
| 18 | xmlns:android="http://schemas.android.com/apk/res/android" |
| 19 | android:id="@+id/dashboard_tile" |
| 20 | android:layout_width="match_parent" |
| 21 | android:layout_height="wrap_content" |
| 22 | android:background="?android:attr/selectableItemBackground" |
| 23 | android:gravity="center_vertical" |
| 24 | android:minHeight="@dimen/dashboard_tile_minimum_height" |
| 25 | android:clickable="true" |
| 26 | android:focusable="true"> |
| 27 | |
| 28 | <ImageView |
| 29 | android:src="@drawable/ic_settings_appops" |
| 30 | android:layout_width="@dimen/dashboard_tile_image_size" |
| 31 | android:layout_height="@dimen/dashboard_tile_image_size" |
| 32 | android:scaleType="centerInside" |
| 33 | android:layout_marginStart="@dimen/dashboard_tile_image_margin" |
| 34 | android:layout_marginEnd="@dimen/dashboard_tile_image_margin" /> |
| 35 | |
| 36 | <LinearLayout |
| 37 | android:layout_width="match_parent" |
| 38 | android:layout_height="wrap_content" |
| 39 | android:orientation="vertical"> |
| 40 | |
| 41 | <TextView android:id="@android:id/title" |
| 42 | android:layout_width="wrap_content" |
| 43 | android:layout_height="wrap_content" |
| 44 | android:singleLine="true" |
| 45 | android:textAppearance="@style/TextAppearance.TileTitle" |
| 46 | android:ellipsize="marquee" |
| 47 | android:fadingEdge="horizontal" /> |
| 48 | |
| 49 | <TextView android:id="@android:id/summary" |
| 50 | android:layout_width="wrap_content" |
| 51 | android:layout_height="wrap_content" |
| 52 | android:textAppearance="@style/TextAppearance.Small" |
| 53 | android:textColor="?android:attr/textColorSecondary" |
| 54 | android:maxLines="1" |
| 55 | android:ellipsize="end" |
| 56 | android:paddingEnd="@dimen/dashboard_tile_image_margin" /> |
| 57 | |
| 58 | </LinearLayout> |
| 59 | |
| 60 | </LinearLayout> |