Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 907bb914 authored by android-build-team Robot's avatar android-build-team Robot
Browse files

release-request-fbba21d1-17b5-4752-9864-95770e5db190-for-git_oc-mr1-release-41...

release-request-fbba21d1-17b5-4752-9864-95770e5db190-for-git_oc-mr1-release-4144771 snap-temp-L10300000078657232

Change-Id: I7b48dca9a5e4aacede005aedafdf6092380f0804
parents df35c993 cc7adfd9
Loading
Loading
Loading
Loading
+8 −9
Original line number Diff line number Diff line
@@ -28,15 +28,15 @@
    style="@style/EntityHeader">

    <LinearLayout
        android:layout_width="216dp"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_marginStart="48dp"
        android:layout_marginEnd="12dp"
        android:layout_weight="1"
        android:layout_marginStart="56dp"
        android:orientation="vertical">

        <TextView
            android:id="@+id/battery_percent"
            android:layout_width="wrap_content"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginTop="12dp"
            android:fontFamily="@*android:string/config_headlineFontFamily"
@@ -44,14 +44,14 @@

        <TextView
            android:id="@+id/summary1"
            android:layout_width="wrap_content"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginTop="12dp"
            android:layout_marginTop="8dp"
            android:textAppearance="@android:style/TextAppearance.Material.Small"/>

        <TextView
            android:id="@+id/summary2"
            android:layout_width="wrap_content"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:textAppearance="@android:style/TextAppearance.Material.Small"/>

@@ -61,7 +61,6 @@
        android:id="@+id/battery_header_icon"
        android:layout_width="@dimen/battery_meter_width"
        android:layout_height="@dimen/battery_meter_height"
        android:layout_gravity="end"
        android:layout_marginEnd="24dp"/>
        android:layout_marginEnd="16dp"/>

</LinearLayout>
 No newline at end of file

res/layout/condition_card.xml

deleted100644 → 0
+0 −128
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<!--
     Copyright (C) 2015 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.
-->

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:clipChildren="false"
    android:clipToPadding="false">
    <LinearLayout
        android:id="@+id/content"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical"
        android:background="?android:attr/colorAccent"
        android:elevation="2dp"
        android:clickable="true"
        android:focusable="true">

        <LinearLayout
            android:id="@+id/collapsed_group"
            android:layout_width="match_parent"
            android:layout_height="56dp"
            android:background="?android:attr/selectableItemBackground"
            android:orientation="horizontal"
            android:gravity="center">

            <ImageView
                android:id="@android:id/icon"
                android:layout_width="24dp"
                android:layout_height="wrap_content"
                android:layout_marginStart="16dp"
                android:layout_marginEnd="32dp"
                android:tint="?android:attr/textColorPrimaryInverse" />

            <TextView
                android:id="@android:id/title"
                android:layout_width="0dp"
                android:layout_height="wrap_content"
                android:layout_weight="1"
                android:textAppearance="?android:attr/textAppearanceMedium"
                android:textColor="?android:attr/textColorPrimaryInverse" />

            <ImageView
                android:id="@+id/expand_indicator"
                android:layout_width="wrap_content"
                android:layout_height="match_parent"
                android:padding="16dp"
                android:tint="?android:attr/textColorPrimaryInverse"/>

        </LinearLayout>

        <LinearLayout
            android:id="@+id/detail_group"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:paddingStart="72dp"
            android:visibility="gone"
            android:orientation="vertical">

            <!-- TODO: Don't set alpha here, and do proper themeing that
                 handles night mode -->
            <TextView
                android:id="@android:id/summary"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:paddingEnd="?android:attr/listPreferredItemPaddingEnd"
                android:paddingBottom="16dp"
                android:textAppearance="?android:attr/textAppearanceListItemSecondary"
                android:alpha=".7"
                android:textColor="?android:attr/textColorPrimaryInverse" />

            <!-- TODO: Better background -->
            <View
                android:id="@+id/divider"
                android:layout_width="match_parent"
                android:layout_height=".25dp"
                android:background="@android:color/white" />

            <com.android.internal.widget.ButtonBarLayout
                android:id="@+id/buttonBar"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:paddingTop="8dp"
                android:paddingBottom="8dp"
                style="?android:attr/buttonBarStyle"
                android:paddingEnd="?android:attr/listPreferredItemPaddingEnd">

                <Button
                    android:id="@+id/first_action"
                    android:layout_width="0dp"
                    android:layout_height="wrap_content"
                    android:layout_weight="1"
                    android:paddingStart="0dp"
                    android:alpha=".8"
                    android:textAlignment="viewStart"
                    android:textColor="?android:attr/textColorPrimaryInverse"
                    style="?android:attr/buttonBarButtonStyle" />

                <Button
                    android:id="@+id/second_action"
                    android:layout_width="0dp"
                    android:layout_height="wrap_content"
                    android:layout_weight="1"
                    android:alpha=".8"
                    android:textAlignment="viewStart"
                    android:textColor="?android:attr/textColorPrimaryInverse"
                    style="?android:attr/buttonBarButtonStyle" />

            </com.android.internal.widget.ButtonBarLayout>

        </LinearLayout>

    </LinearLayout>
</FrameLayout>

res/layout/suggestion_header.xml

deleted100644 → 0
+0 −52
Original line number Diff line number Diff line
<?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:layout_width="match_parent"
    android:layout_height="@dimen/dashboard_category_height"
    android:clickable="true"
    android:focusable="true"
    android:background="@drawable/selectable_card_grey"
    android:gravity="center_vertical"
    android:paddingTop="4dp">
    <ImageView
        android:id="@android:id/icon"
        android:layout_width="@dimen/dashboard_tile_image_size"
        android:layout_height="@dimen/dashboard_tile_image_size"
        android:layout_marginStart="@dimen/dashboard_tile_image_margin"
        android:layout_marginEnd="@dimen/dashboard_tile_image_margin"
        android:src="@drawable/ic_expand_more"/>
    <TextView
        android:id="@android:id/title"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:singleLine="true"
        android:textAppearance="@style/TextAppearance.SuggestionTitle"
        android:textColor="?android:attr/colorAccent"
        android:ellipsize="marquee"
        android:fadingEdge="horizontal"/>
    <TextView
        android:id="@android:id/summary"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:gravity="end"
        android:paddingEnd="18dp"
        android:textAppearance="@style/TextAppearance.SuggestionTitle"
        android:textColor="?android:attr/colorAccent"/>
</LinearLayout>

res/layout/suggestion_tile.xml

deleted100644 → 0
+0 −58
Original line number Diff line number Diff line
<?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:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="@drawable/selectable_card_grey"
    android:clickable="true"
    android:focusable="true"
    android:gravity="center_vertical"
    android:minHeight="@dimen/dashboard_tile_minimum_height">

    <ImageView
        android:id="@android:id/icon"
        android:layout_width="@dimen/dashboard_tile_image_size"
        android:layout_height="@dimen/dashboard_tile_image_size"
        android:layout_marginStart="@dimen/dashboard_tile_image_margin"
        android:layout_marginEnd="@dimen/dashboard_tile_image_margin"
        android:scaleType="centerInside"/>

    <RelativeLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_weight="1">

        <TextView android:id="@android:id/title"
                  android:layout_width="wrap_content"
                  android:layout_height="wrap_content"
                  android:singleLine="true"
                  android:textAppearance="@style/TextAppearance.TileTitle"
                  android:ellipsize="marquee"
                  android:fadingEdge="horizontal"/>

        <TextView android:id="@android:id/summary"
                  android:layout_width="wrap_content"
                  android:layout_height="wrap_content"
                  android:layout_below="@android:id/title"
                  android:layout_alignStart="@android:id/title"
                  android:textAppearance="@style/TextAppearance.Small"
                  android:textColor="?android:attr/textColorSecondary"/>

    </RelativeLayout>

</LinearLayout>
 No newline at end of file
+1 −3
Original line number Diff line number Diff line
@@ -18,9 +18,7 @@
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_margin="8dp"
    android:background="@drawable/selectable_card"
    android:background="@android:color/white"
    android:clickable="true"
    android:elevation="2dp"
    android:focusable="true"
    android:minHeight="@dimen/dashboard_tile_minimum_height" />
Loading