| <?xml version="1.0" encoding="utf-8"?> |
| <!-- Copyright (C) 2019 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:paddingTop="12dp" |
| android:paddingBottom="12dp" |
| android:orientation="vertical"> |
| |
| <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" |
| android:layout_width="match_parent" |
| android:layout_height="wrap_content" |
| android:layout_marginStart="?android:attr/listPreferredItemPaddingStart" |
| android:layout_marginEnd="?android:attr/listPreferredItemPaddingEnd" |
| android:orientation="horizontal"> |
| <ImageView |
| android:id="@+id/thumb1" |
| android:layout_width="@dimen/permission_thumb_size" |
| android:layout_height="@dimen/permission_thumb_size" |
| android:layout_marginEnd="@dimen/permission_thumb_margin" |
| android:background="@drawable/thumb_clip" |
| android:scaleType="centerCrop" |
| android:visibility="gone" /> |
| <ImageView |
| android:id="@+id/thumb2" |
| android:layout_width="@dimen/permission_thumb_size" |
| android:layout_height="@dimen/permission_thumb_size" |
| android:layout_marginEnd="@dimen/permission_thumb_margin" |
| android:background="@drawable/thumb_clip" |
| android:scaleType="centerCrop" |
| android:visibility="gone" /> |
| <ImageView |
| android:id="@+id/thumb3" |
| android:layout_width="@dimen/permission_thumb_size" |
| android:layout_height="@dimen/permission_thumb_size" |
| android:layout_marginEnd="@dimen/permission_thumb_margin" |
| android:background="@drawable/thumb_clip" |
| android:scaleType="centerCrop" |
| android:visibility="gone" /> |
| <FrameLayout |
| android:id="@+id/thumb_more_container" |
| android:layout_width="@dimen/permission_thumb_size" |
| android:layout_height="@dimen/permission_thumb_size" |
| android:visibility="gone"> |
| <ImageView |
| android:id="@+id/thumb_more" |
| android:layout_width="match_parent" |
| android:layout_height="match_parent" |
| android:background="@drawable/thumb_clip" |
| android:scaleType="centerCrop" |
| android:tint="@color/thumb_more_tint" /> |
| <TextView |
| android:id="@+id/thumb_more_text" |
| android:layout_width="match_parent" |
| android:layout_height="match_parent" |
| android:gravity="center" |
| android:textColor="?android:attr/textColorPrimaryInverse" /> |
| </FrameLayout> |
| </LinearLayout> |
| |
| <ImageView |
| android:id="@+id/thumb_full" |
| android:layout_width="match_parent" |
| android:layout_height="200dp" |
| android:scaleType="centerCrop" |
| android:visibility="gone" /> |
| |
| <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" |
| android:layout_width="match_parent" |
| android:layout_height="wrap_content" |
| android:layout_marginStart="?android:attr/listPreferredItemPaddingStart" |
| android:layout_marginEnd="?android:attr/listPreferredItemPaddingEnd" |
| android:orientation="vertical"> |
| <TextView |
| android:id="@+id/list" |
| android:layout_width="match_parent" |
| android:layout_height="wrap_content" |
| android:layout_marginTop="12dp" |
| android:visibility="gone" /> |
| <TextView |
| android:id="@+id/message" |
| android:layout_width="match_parent" |
| android:layout_height="wrap_content" |
| android:layout_marginTop="12dp" |
| android:visibility="gone" /> |
| </LinearLayout> |
| </LinearLayout> |