blob: 292b8cdc0729228d1dee9bc7ee6c5ea21b8377d1 [file] [log] [blame]
Santiago Etchebehereba0bc762019-02-25 18:01:14 -08001<?xml version="1.0" encoding="utf-8"?>
2<!--
3 Copyright (C) 2019 The Android Open Source Project
4
5 Licensed under the Apache License, Version 2.0 (the "License");
6 you may not use this file except in compliance with the License.
7 You may obtain a copy of the License at
8
9 http://www.apache.org/licenses/LICENSE-2.0
10
11 Unless required by applicable law or agreed to in writing, software
12 distributed under the License is distributed on an "AS IS" BASIS,
13 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 See the License for the specific language governing permissions and
15 limitations under the License.
16-->
17<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
18 android:layout_width="wrap_content"
Wesley.CW Wang9f64b342020-06-01 21:07:03 +080019 android:layout_height="wrap_content"
Santiago Etchebehereba0bc762019-02-25 18:01:14 -080020 android:orientation="vertical">
21
Santiago Etchebehereba0bc762019-02-25 18:01:14 -080022 <FrameLayout
23 android:id="@+id/option_tile"
24 android:layout_width="@dimen/option_tile_width"
25 android:layout_height="@dimen/option_tile_width"
26 android:layout_gravity="center_horizontal"
27 android:paddingHorizontal="@dimen/option_tile_padding_horizontal"
28 android:paddingVertical="@dimen/option_tile_padding_vertical"
Wesley.CW Wang9f64b342020-06-01 21:07:03 +080029 android:layout_marginHorizontal="@dimen/component_options_margin_horizontal"
Santiago Etchebehereba0bc762019-02-25 18:01:14 -080030 android:background="@drawable/option_border">
31 <ImageView
32 android:id="@+id/option_icon"
33 android:layout_width="@dimen/component_icon_thumb_size"
34 android:layout_height="@dimen/component_icon_thumb_size"
Santiago Etchebehere60c3f2f2019-05-22 14:38:19 -070035 android:layout_gravity="center"
36 android:tint="?android:colorForeground"/>
Santiago Etchebehereba0bc762019-02-25 18:01:14 -080037 </FrameLayout>
38</LinearLayout>