72 lines
2.8 KiB
XML
72 lines
2.8 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- Copyright (C) 2017 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:gravity="center_vertical"
|
|
android:orientation="horizontal"
|
|
android:paddingBottom="@dimen/medMargin"
|
|
android:paddingEnd="@dimen/fullMargin"
|
|
android:paddingLeft="@dimen/fullMargin"
|
|
android:paddingRight="@dimen/fullMargin"
|
|
android:paddingStart="@dimen/fullMargin"
|
|
android:paddingTop="@dimen/medMargin">
|
|
|
|
<FrameLayout
|
|
android:layout_width="@dimen/listIcon"
|
|
android:layout_height="@dimen/listIcon"
|
|
android:clipChildren="true">
|
|
|
|
<ImageView
|
|
android:id="@+id/color_label"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:src="@drawable/card_background"
|
|
android:tint="@color/defaultTint" />
|
|
|
|
<TextView
|
|
android:id="@+id/activity_label"
|
|
android:layout_width="@dimen/listLabelTextBox"
|
|
android:layout_height="@dimen/listLabelTextBox"
|
|
android:layout_gravity="center"
|
|
android:text="@string/activity_label"
|
|
android:textAlignment="center"
|
|
android:textAppearance="@style/medium"
|
|
android:textColor="@color/labelText"
|
|
android:textSize="@dimen/titleText" />
|
|
</FrameLayout>
|
|
|
|
<TextView
|
|
android:id="@+id/activity_name"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="@dimen/medMargin"
|
|
android:layout_marginEnd="@dimen/smallMargin"
|
|
android:layout_weight="1"
|
|
android:text="@string/activity_name"
|
|
android:textAppearance="@style/normal" />
|
|
|
|
<ImageButton
|
|
android:id="@+id/intent_button"
|
|
style="?android:attr/borderlessButtonStyle"
|
|
android:layout_width="@dimen/listIcon"
|
|
android:layout_height="@dimen/listIcon"
|
|
android:src="@drawable/info_icon"
|
|
android:tint="@color/defaultTint"
|
|
android:tooltipText="@string/intent_button_tooltip"
|
|
android:contentDescription="@string/intent_button_description" />
|
|
|
|
</LinearLayout>
|