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

Commit 1434a407 authored by Jeff Sharkey's avatar Jeff Sharkey Committed by Android (Google) Code Review
Browse files

Merge "More tweaks to match UX spec." into klp-dev

parents 2f1ef77c ed903213
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -24,8 +24,8 @@
        android:layout_height="match_parent"
        android:gravity="center"
        android:text="@string/empty"
        android:textAppearance="?android:attr/textAppearanceMedium"
        android:visibility="gone" />
        android:visibility="gone"
        style="@style/TextAppearance.Medium" />

    <ListView
        android:id="@+id/list"
+5 −5
Original line number Diff line number Diff line
@@ -77,8 +77,8 @@
                android:layout_weight="1"
                android:singleLine="true"
                android:ellipsize="marquee"
                android:textAppearance="?android:attr/textAppearanceMedium"
                android:textAlignment="viewStart" />
                android:textAlignment="viewStart"
                style="@style/TextAppearance.Medium" />

            <ImageView
                android:id="@android:id/icon1"
@@ -107,7 +107,7 @@
                android:singleLine="true"
                android:ellipsize="marquee"
                android:textAlignment="viewStart"
                android:textAppearance="?android:attr/textAppearanceSmall" />
                style="@style/TextAppearance.Small" />

            <TextView
                android:id="@+id/size"
@@ -119,7 +119,7 @@
                android:singleLine="true"
                android:ellipsize="marquee"
                android:textAlignment="viewStart"
                android:textAppearance="?android:attr/textAppearanceSmall" />
                style="@style/TextAppearance.Small" />

            <TextView
                android:id="@android:id/summary"
@@ -131,7 +131,7 @@
                android:singleLine="true"
                android:ellipsize="marquee"
                android:textAlignment="viewStart"
                android:textAppearance="?android:attr/textAppearanceSmall" />
                style="@style/TextAppearance.Small" />

        </LinearLayout>

+5 −5
Original line number Diff line number Diff line
@@ -68,8 +68,8 @@
                android:layout_weight="1"
                android:singleLine="true"
                android:ellipsize="marquee"
                android:textAppearance="?android:attr/textAppearanceMedium"
                android:textAlignment="viewStart" />
                android:textAlignment="viewStart"
                style="@style/TextAppearance.Medium" />

            <ImageView
                android:id="@android:id/icon1"
@@ -96,7 +96,7 @@
                android:singleLine="true"
                android:ellipsize="marquee"
                android:textAlignment="viewStart"
                android:textAppearance="?android:attr/textAppearanceSmall" />
                style="@style/TextAppearance.Small" />

            <TextView
                android:id="@+id/size"
@@ -108,7 +108,7 @@
                android:singleLine="true"
                android:ellipsize="marquee"
                android:textAlignment="viewStart"
                android:textAppearance="?android:attr/textAppearanceSmall" />
                style="@style/TextAppearance.Small" />

            <TextView
                android:id="@android:id/summary"
@@ -120,7 +120,7 @@
                android:singleLine="true"
                android:ellipsize="marquee"
                android:textAlignment="viewStart"
                android:textAppearance="?android:attr/textAppearanceSmall" />
                style="@style/TextAppearance.Small" />

        </LinearLayout>

+34 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2013 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="@dimen/grid_height"
    android:minHeight="?android:attr/listPreferredItemHeight"
    android:paddingStart="?android:attr/listPreferredItemPaddingStart"
    android:paddingEnd="?android:attr/listPreferredItemPaddingEnd"
    android:paddingTop="8dip"
    android:paddingBottom="8dip"
    android:orientation="horizontal">

    <ProgressBar
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        android:indeterminate="true"
        style="?android:attr/progressBarStyle" />

</FrameLayout>
Loading