Bug: 35098444 Test: make RunSettingsRoboTests In the previous design for instant apps, some metadata about the app such as developer title, maturity rating, etc. was going to be shown in the app header. In the latest design, we instead are just showing a little label that says "Instant app". The two CL's for this topic work together to change this: frameworks/base : adds code to work around the problem that robolectric doesn't know about the new isInstantApp method of the ApplicationInfo class, so we need to avoid calling it during tests. pacakges/apps/Settings: removes the code that previously displayed the instant app metadata, and instead just insert the "Instant app" label. Change-Id: I2cbc70bf4827c401e862c58ea4ca7f8f9ba1cf58
115 lines
4.3 KiB
XML
115 lines
4.3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!--
|
|
Copyright (C) 2016 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:id="@+id/app_snippet"
|
|
style="@style/EntityHeader"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_horizontal|top"
|
|
android:orientation="vertical"
|
|
android:paddingStart="?android:attr/listPreferredItemPaddingStart"
|
|
android:paddingEnd="?android:attr/listPreferredItemPaddingEnd"
|
|
android:paddingTop="24dp"
|
|
android:paddingBottom="24dp" >
|
|
|
|
<!-- App snippet with buttons -->
|
|
<RelativeLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:paddingStart="8dp">
|
|
|
|
<ImageView
|
|
android:id="@+id/app_detail_icon"
|
|
android:layout_width="80dp"
|
|
android:layout_height="80dp"
|
|
android:scaleType="fitXY"
|
|
android:layout_gravity="center_horizontal"
|
|
android:antialias="true"/>
|
|
|
|
<LinearLayout
|
|
android:id="@+id/app_detail_links"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="match_parent"
|
|
android:layout_alignParentEnd="true"
|
|
android:orientation="vertical">
|
|
|
|
<ImageButton
|
|
android:id="@+id/right_button"
|
|
style="@android:style/Widget.Material.Button.Borderless"
|
|
android:layout_width="wrap_content"
|
|
android:layout_weight="1"
|
|
android:layout_height="0dp"
|
|
android:src="@drawable/ic_settings_24dp"
|
|
android:tint="?android:attr/colorAccent"/>
|
|
|
|
<ImageButton
|
|
android:id="@+id/left_button"
|
|
style="@android:style/Widget.Material.Button.Borderless"
|
|
android:layout_width="wrap_content"
|
|
android:layout_weight="1"
|
|
android:layout_height="0dp"
|
|
android:tint="?android:attr/colorAccent"/>
|
|
|
|
</LinearLayout>
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_toEndOf="@id/app_detail_icon"
|
|
android:layout_toStartOf="@id/app_detail_links"
|
|
android:paddingStart="24dp"
|
|
android:paddingEnd="24dp"
|
|
android:orientation="vertical">
|
|
|
|
<TextView
|
|
android:id="@+id/app_detail_title"
|
|
style="@style/TextAppearance.EntityHeaderTitle"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:singleLine="false"
|
|
android:ellipsize="marquee"
|
|
android:gravity="start"
|
|
android:paddingTop="8dp"/>
|
|
|
|
<TextView
|
|
android:id="@+id/install_type"
|
|
android:visibility="gone"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="start"
|
|
android:singleLine="true"
|
|
android:ellipsize="marquee"
|
|
android:textAppearance="@android:style/TextAppearance.Material.Body1"
|
|
android:textColor="?android:attr/textColorSecondary"/>
|
|
|
|
<TextView
|
|
android:id="@+id/app_detail_summary"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="start"
|
|
android:singleLine="true"
|
|
android:ellipsize="marquee"
|
|
android:textAppearance="@android:style/TextAppearance.Material.Body1"
|
|
android:textColor="?android:attr/textColorSecondary"/>
|
|
|
|
</LinearLayout>
|
|
|
|
</RelativeLayout>
|
|
|
|
</LinearLayout> |