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

Commit 4722861e authored by Nancy Chen's avatar Nancy Chen
Browse files

Generalize select account dialog for usage anywhere in dialer (2/2)

Currently the select account dialog is specific to InCallUI, but there
are other places in the dialer app that will need the user to select an
account (e.g. MMI pin) so we want to reuse this dialog.
+ Move dialog to ContactsCommon
+ Add a listener to the SelectPhoneAccountDialogFragment class

Bug: 17917937

Change-Id: I4756daf40a518e12ac19d97bc09e62647de422b4
parent 52e581d3
Loading
Loading
Loading
Loading
+38 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2014 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.
-->

<!-- Layout of a single item in the InCallUI Account Chooser Dialog. -->
<view class="com.android.contacts.common.widget.ActivityTouchLinearLayout"
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="horizontal"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:padding="4dp" >

    <ImageView android:id="@+id/icon"
               android:layout_width="48dp"
               android:layout_height="48dp"
               android:tint="@color/dialtacts_secondary_text_color"
               android:scaleType="center" />

    <TextView android:id="@+id/text"
              android:textAppearance="?android:attr/textAppearanceMedium"
              android:gravity="start|center_vertical"
              android:layout_marginLeft="8dp"
              android:layout_width="0dp"
              android:layout_weight="1"
              android:layout_height="match_parent" />
</view>
+2 −0
Original line number Diff line number Diff line
@@ -763,4 +763,6 @@ a ren't members of any other group. [CHAR LIMIT=25] -->
         contacts to be displayed. [CHAR LIMIT=128] -->
    <string name="settings_contact_display_options_title">Contact display options</string>

    <!-- Title for Select Account Dialog [CHAR LIMIT=30] -->
    <string name="select_account_dialog_title">Select Account</string>
</resources>