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

Commit 1a032a2e authored by Android Dialer's avatar Android Dialer Committed by Copybara-Service
Browse files

Created Layout for RecordVoicemailGreetingActivity

Test: "N/A"
PiperOrigin-RevId: 202150189
Change-Id: I709fef2917bf29d360882ecc4bc88676474454a0
parent 6e0dd6b1
Loading
Loading
Loading
Loading
+56 −1
Original line number Diff line number Diff line
@@ -21,4 +21,59 @@
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context="com.android.dialer.voicemail.settings.RecordVoicemailGreetingActivity">

  <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>