summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndroid Dialer <noreply@google.com>2018-06-26 15:55:32 -0700
committerandroid-build-merger <android-build-merger@google.com>2018-06-26 15:55:32 -0700
commit9f15322971cf09dfed32517a575db887ca180f02 (patch)
treef4870b2b8ccb720d06620bc90f9f4fae7dc8505d
parentaa090388041f4c7c6cdcbb90566c89ed5764a281 (diff)
parent05d055fe505e6e56f5756e3b9ff6e44042691e76 (diff)
Merge "Created Layout for RecordVoicemailGreetingActivity" am: cae28c6d5c
am: 05d055fe50 Change-Id: Ib80bfdc685df2d469c7bcf904db6069e7a87ddc2
-rw-r--r--java/com/android/dialer/voicemail/settings/res/layout/activity_record_voicemail_greeting.xml57
1 files changed, 56 insertions, 1 deletions
diff --git a/java/com/android/dialer/voicemail/settings/res/layout/activity_record_voicemail_greeting.xml b/java/com/android/dialer/voicemail/settings/res/layout/activity_record_voicemail_greeting.xml
index afaec5fdf..022cd2512 100644
--- a/java/com/android/dialer/voicemail/settings/res/layout/activity_record_voicemail_greeting.xml
+++ b/java/com/android/dialer/voicemail/settings/res/layout/activity_record_voicemail_greeting.xml
@@ -21,4 +21,59 @@
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.android.dialer.voicemail.settings.RecordVoicemailGreetingActivity">
-</RelativeLayout> \ No newline at end of file
+
+ <LinearLayout
+ android:id="@+id/linearLayout"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:orientation="vertical"
+ android:gravity="center_horizontal"
+ android:layout_centerHorizontal="true"
+ android:layout_centerVertical="true"
+ android:layout_marginTop="120dp">
+
+ <com.android.dialer.voicemail.settings.RecordButton
+ android:id="@+id/record_button"
+ android:width="192dp"
+ android:height="192dp"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:background="@null"/>
+
+ <TextView
+ android:layout_width="wrap_content"
+ android:layout_height="match_parent"
+ android:layout_marginTop="40dp"
+ android:gravity="center_horizontal"
+ android:textAppearance="@style/Dialer.TextAppearance.Primary"
+ android:textAllCaps="true"
+ android:text="@string/change_greeting_text"/>
+ </LinearLayout>
+
+ <LinearLayout
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:layout_alignParentBottom="true"
+ android:layout_centerHorizontal="true"
+ android:orientation="horizontal"
+ style="?android:attr/buttonBarStyle">
+
+ <Button
+ android:id="@+id/save_button"
+ android:layout_width="0dp"
+ android:layout_height="wrap_content"
+ android:layout_weight="1"
+ android:text="@string/save_button_text"
+ android:visibility="gone"
+ style="?android:attr/buttonBarButtonStyle"/>
+
+ <Button
+ android:id="@+id/redo_button"
+ android:layout_width="0dp"
+ android:layout_height="wrap_content"
+ android:layout_weight="1"
+ android:text="@string/redo_button_text"
+ android:visibility="gone"
+ style="?android:attr/buttonBarButtonStyle"/>
+ </LinearLayout>
+</RelativeLayout>