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

Commit 5ecb30f9 authored by Anthony Chen's avatar Anthony Chen Committed by Android (Google) Code Review
Browse files

Merge "Allow progress bar dimensions to be configured."

parents f30921e2 8f5f358f
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -6724,8 +6724,8 @@ public class Notification implements Parcelable
                // Need to clone customContent before adding, because otherwise it can no longer be
                // parceled independently of remoteViews.
                customContent = customContent.clone();
                remoteViews.removeAllViews(R.id.notification_main_column);
                remoteViews.addView(R.id.notification_main_column, customContent);
                remoteViews.removeAllViewsExceptId(R.id.notification_main_column, R.id.progress);
                remoteViews.addView(R.id.notification_main_column, customContent, 0 /* index */);
            }
            // also update the end margin if there is an image
            int endMargin = R.dimen.notification_content_margin_end;
+263 −143

File changed.

Preview size limit exceeded, changes collapsed.

+9 −14
Original line number Diff line number Diff line
@@ -15,12 +15,12 @@
  ~ limitations under the License
  -->

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
<FrameLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/status_bar_latest_event_content"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:tag="base"
    >
    android:tag="base" >
    <include layout="@layout/notification_template_header" />
    <LinearLayout
        android:id="@+id/notification_main_column"
@@ -31,19 +31,14 @@
        android:layout_marginEnd="@dimen/notification_content_margin_end"
        android:layout_marginTop="@dimen/notification_content_margin_top"
        android:layout_marginBottom="@dimen/notification_content_margin_bottom"
        android:orientation="vertical"
        >
        android:orientation="vertical" >
        <include layout="@layout/notification_template_part_line1" />
        <include layout="@layout/notification_template_text" />
    </LinearLayout>
    <FrameLayout
        <include
            android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_gravity="bottom"
        android:layout_marginStart="@dimen/notification_content_margin_start"
        android:layout_marginBottom="15dp"
        android:layout_marginEnd="@dimen/notification_content_margin_end" >
        <include layout="@layout/notification_template_progress" />
    </FrameLayout>
            android:layout_height="@dimen/notification_progress_bar_height"
            android:layout_marginTop="@dimen/notification_progress_margin_top"
            layout="@layout/notification_template_progress" />
    </LinearLayout>
    <include layout="@layout/notification_template_right_icon" />
</FrameLayout>
+15 −24
Original line number Diff line number Diff line
@@ -20,51 +20,42 @@
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical"
    android:tag="big"
    >
    android:tag="big" >
    <LinearLayout
            android:id="@+id/notification_action_list_margin_target"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginBottom="@dimen/notification_action_list_height"
            android:orientation="vertical"
            >
            android:orientation="vertical" >
        <FrameLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_gravity="top"
            >
            android:layout_gravity="top" >
            <include layout="@layout/notification_template_header" />
            <LinearLayout
                android:id="@+id/notification_main_column"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:layout_gravity="top"
                android:layout_height="wrap_content"
                android:layout_marginStart="@dimen/notification_content_margin_start"
                android:layout_marginEnd="@dimen/notification_content_margin_end"
                android:layout_marginTop="@dimen/notification_content_margin_top"
                android:layout_marginBottom="@dimen/notification_content_margin_bottom"
                android:orientation="vertical"
                >
                android:orientation="vertical" >
                <include layout="@layout/notification_template_part_line1" />
                <include layout="@layout/notification_template_text" />
            </LinearLayout>
            <FrameLayout
                <include
                    android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_gravity="bottom"
                android:layout_marginStart="@dimen/notification_content_margin_start"
                android:layout_marginBottom="15dp"
                android:layout_marginEnd="@dimen/notification_content_margin_end">
                <include layout="@layout/notification_template_progress" />
            </FrameLayout>
                    android:layout_height="@dimen/notification_progress_bar_height"
                    android:layout_marginTop="@dimen/notification_progress_margin_top"
                    layout="@layout/notification_template_progress" />
            </LinearLayout>
            <include layout="@layout/notification_template_right_icon" />
        </FrameLayout>
        <ViewStub android:layout="@layout/notification_material_reply_text"
        <ViewStub
            android:layout="@layout/notification_material_reply_text"
            android:id="@+id/notification_material_reply_container"
            android:layout_width="match_parent"
                android:layout_height="wrap_content"
        />
            android:layout_height="wrap_content" />
    </LinearLayout>
    <include layout="@layout/notification_material_action_list" />
</FrameLayout>
+1 −1
Original line number Diff line number Diff line
@@ -18,6 +18,6 @@
<ProgressBar xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@android:id/progress"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_height="@dimen/notification_progress_bar_height"
    style="@style/Widget.Material.Light.ProgressBar.Horizontal"
    />
Loading