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

Commit 61355ccc authored by android-build-team Robot's avatar android-build-team Robot
Browse files

Snap for 6318458 from cccc4079 to rvc-release

Change-Id: Ia3f794a55d5531ba1b7e9442cb7c1f23743d3dec
parents 172c99c0 cccc4079
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -22,5 +22,7 @@
        android:tint="?android:attr/colorPrimary">
    <path
        android:fillColor="?android:attr/colorBackground"
        android:pathData="M12,5.99L19.53,19L4.47,19L12,5.99M12,2L1,21h22L12,2zM13,16h-2v2h2v-2zM13,10h-2v4h2v-4z"/>
        android:pathData="M11 15h2v2h-2v-2zm0-8h2v6h-2V7zm0.99-5C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" />
    <path
        android:pathData="M0 0h24v24H0V0z" />
</vector>
 No newline at end of file
+1 −1
Original line number Diff line number Diff line
@@ -90,7 +90,7 @@
                    android:layout_marginEnd="@dimen/briefcase_icon_margin"
                    android:layout_gravity="center_vertical"
                    android:src="@drawable/ic_briefcase"
                    android:contentDescription="@null"/>
                    android:contentDescription="@string/a11y_work"/>

                <TextView
                    android:id="@android:id/title"
+1 −1
Original line number Diff line number Diff line
@@ -84,7 +84,7 @@
                android:layout_width="@dimen/briefcase_icon_size"
                android:layout_marginEnd="@dimen/briefcase_icon_margin"
                android:src="@drawable/ic_briefcase"
                android:contentDescription="@null"/>
                android:contentDescription="@string/a11y_work"/>

            <TextView
                android:id="@android:id/title"
+1 −1
Original line number Diff line number Diff line
@@ -151,7 +151,7 @@
                        android:layout_alignBottom="@android:id/title"
                        android:gravity="center_vertical"
                        android:src="@drawable/ic_briefcase"
                        android:contentDescription="@null"/>
                        android:contentDescription="@string/a11y_work"/>

                    <TextView
                        android:id="@android:id/title"
+69 −31
Original line number Diff line number Diff line
@@ -31,6 +31,11 @@
        app:strokeWidth="1dp"
        app:strokeColor="?android:strokeColor">

        <LinearLayout
            android:layout_height="wrap_content"
            android:layout_width="match_parent"
            android:orientation="vertical">

            <LinearLayout
                android:animateLayoutChanges="true"
                android:id="@+id/message_container"
@@ -61,8 +66,16 @@
                        android:id="@+id/message_title"
                        android:layout_height="wrap_content"
                        android:layout_width="wrap_content"
                        android:textSize="16sp"
                        android:textAppearance="@style/DrawerMenuPrimary"/>

                    <TextView
                        android:id="@+id/message_subtitle"
                        android:layout_height="wrap_content"
                        android:layout_width="wrap_content"
                        android:selectAllOnFocus="true"
                        android:textSize="12sp"/>

                    <TextView
                        android:id="@+id/message_textview"
                        android:layout_height="wrap_content"
@@ -70,7 +83,7 @@
                        android:selectAllOnFocus="true"/>

                    <Button
                    android:id="@+id/button_dismiss"
                        android:id="@+id/dismiss_button"
                        android:layout_height="wrap_content"
                        android:layout_width="wrap_content"
                        android:layout_gravity="end"
@@ -79,5 +92,30 @@

                </LinearLayout>
            </LinearLayout>

            <LinearLayout
                android:id="@+id/action_view"
                android:layout_height="wrap_content"
                android:layout_width="match_parent"
                android:orientation="vertical">

                <View
                    android:layout_width="match_parent"
                    android:layout_height="1dp"
                    android:layout_marginStart="8dp"
                    android:layout_marginEnd="8dp"
                    android:background="?android:strokeColor"/>

                <Button
                    android:id="@+id/action_button"
                    android:layout_height="wrap_content"
                    android:layout_width="wrap_content"
                    android:layout_marginStart="48dp"
                    android:layout_gravity="start"
                    style="@style/DialogTextButton"/>
            </LinearLayout>

        </LinearLayout>

    </com.google.android.material.card.MaterialCardView>
</FrameLayout>
Loading