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

Commit d49de08e authored by Katherine Kuan's avatar Katherine Kuan
Browse files

Make group source button styled like a stacked action bar

- On phone portrait layouts

Bug: 5220705
Change-Id: I2752cde7d5c63523d7a76e27867b3af1c8816d35
parent 320b310f
Loading
Loading
Loading
Loading
+146 B
Loading image diff...
+133 B
Loading image diff...
+163 B
Loading image diff...
+21 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2011 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.
-->

<selector xmlns:android="http://schemas.android.com/apk/res/android"
          android:exitFadeDuration="@android:integer/config_mediumAnimTime">
    <item android:state_pressed="true" android:drawable="@drawable/action_bar_item_pressed_holo_light"/>
    <item android:drawable="@drawable/ab_stacked_solid_inverse_holo" />
</selector>
+0 −4
Original line number Diff line number Diff line
@@ -24,9 +24,6 @@
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="wrap_content"
    android:layout_height="match_parent"
    android:divider="?android:attr/dividerVertical"
    android:showDividers="end"
    android:dividerPadding="12dip"
    android:orientation="horizontal"
    style="?android:attr/actionButtonStyle">

@@ -34,7 +31,6 @@
        android:id="@+id/group_source"
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:paddingRight="5dip"
        android:orientation="horizontal">

        <TextView
Loading