Reorganize phone account settings.

+ Added new fragment for phone account settings.
+ Added new activity for phone account settings, which launches this
fragment. I would have prefered to specify a fragment on the
PreferenceScreen in call_feature_setting.xml, but I couldn't get it
to work so I dispatch an intent to start a new activity instead. I
think the preferred option doesn't work because CallFeatureSetting
is still stuck in the old PreferenceActivity model.
+ Added new activity to the manifest file.
+ Moved the default outgoing call, call assistant, and "use SIP
calling settings" into new PhoneAccountSettingsFragment.
- Deleting code for implementing those in CallFeaturesSetting.
+ Added code to AccountSelectionPreference to disable updating of the
summary, and firing and event after the value has been changed when
an account is selected.

Bug: 17487262
Change-Id: I126806ef8e70f8323a7ff143863dacffeb502eaa
diff --git a/res/values/dimens.xml b/res/values/dimens.xml
index 267f142..a3c62a9 100644
--- a/res/values/dimens.xml
+++ b/res/values/dimens.xml
@@ -107,5 +107,4 @@
     <dimen name="floating_action_button_width">67dp</dimen>
     <dimen name="floating_action_button_height">67dp</dimen>
     <dimen name="floating_action_button_margin_bottom">26dp</dimen>
-
 </resources>
diff --git a/res/values/strings.xml b/res/values/strings.xml
index d7cac8d..02eb9c8 100644
--- a/res/values/strings.xml
+++ b/res/values/strings.xml
@@ -161,7 +161,7 @@
     <string name="wifi_calling_use_call_assistant_summary">Let apps or services manage networks used for calls</string>
     <!-- Label for setting to configure the selected call assistant. -->
     <string name="wifi_calling_call_assistant_configure">Configure</string>
-    <!-- Label for setting to configure the seelcted call assistnant when no call assistant is chosen. -->
+    <!-- Label for setting to configure the selected call assistant when no call assistant is chosen. -->
     <string name="wifi_calling_call_assistant_configure_no_selection">Call assistant off</string>
 
     <!-- Built-in label for the default connection service setting. -->
diff --git a/res/values/styles.xml b/res/values/styles.xml
index 587cb33..291cfc5 100644
--- a/res/values/styles.xml
+++ b/res/values/styles.xml
@@ -238,6 +238,7 @@
     </style>
 
     <style name="TelephonyActionBarStyle" parent="android:Widget.Material.ActionBar">
+        <item name="android:displayOptions">showHome|homeAsUp|showTitle</item>
         <item name="android:background">@color/actionbar_background_color</item>
         <item name="android:titleTextStyle">@style/DialtactsActionBarTitleText</item>
         <item name="android:height">@dimen/action_bar_height</item>