diff options
Diffstat (limited to '')
-rw-r--r-- | src/main/res/layout/activity_recording.xml | 52 | ||||
-rw-r--r-- | src/main/res/values/strings.xml | 2 | ||||
-rw-r--r-- | src/main/res/values/themes.xml | 6 |
3 files changed, 60 insertions, 0 deletions
diff --git a/src/main/res/layout/activity_recording.xml b/src/main/res/layout/activity_recording.xml new file mode 100644 index 000000000..2e5ea7307 --- /dev/null +++ b/src/main/res/layout/activity_recording.xml @@ -0,0 +1,52 @@ +<?xml version="1.0" encoding="utf-8"?> +<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:background="@color/grey50"> + + <LinearLayout + android:id="@+id/button_bar" + android:layout_width="fill_parent" + android:layout_height="wrap_content" + android:layout_below="@+id/timer" + android:layout_alignParentLeft="true" + android:layout_alignParentStart="true"> + + <Button + android:id="@+id/cancel_button" + style="?android:attr/borderlessButtonStyle" + android:layout_width="0dp" + android:layout_height="wrap_content" + android:layout_weight="1" + android:text="@string/cancel" + android:textColor="@color/primary" /> + + <View + android:layout_width="1dp" + android:layout_height="fill_parent" + android:layout_marginBottom="7dp" + android:layout_marginTop="7dp" + android:background="@color/accent" /> + + <Button + android:id="@+id/share_button" + style="?android:attr/borderlessButtonStyle" + android:layout_width="0dp" + android:layout_height="wrap_content" + android:layout_weight="1" + android:text="@string/share" + android:textColor="@color/primary" /> + </LinearLayout> + + <TextView + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:textSize="50sp" + android:text="0:00.0" + android:textColor="@color/primary" + android:typeface="monospace" + android:textStyle="bold" + android:id="@+id/timer" + android:layout_alignParentTop="true" + android:layout_centerHorizontal="true"/> +</RelativeLayout>
\ No newline at end of file diff --git a/src/main/res/values/strings.xml b/src/main/res/values/strings.xml index 136c3983e..ecc715de9 100644 --- a/src/main/res/values/strings.xml +++ b/src/main/res/values/strings.xml @@ -671,5 +671,7 @@ <string name="presence_dnd">Busy</string> <string name="secure_password_generated">A secure password has been generated</string> <string name="device_does_not_support_battery_op">Your device does not support opting out of battery optimization</string> + <string name="share">Teilen</string> + <string name="no_mic_permissions">No permissions to record audio</string> </resources> diff --git a/src/main/res/values/themes.xml b/src/main/res/values/themes.xml index db86770fe..f3592b823 100644 --- a/src/main/res/values/themes.xml +++ b/src/main/res/values/themes.xml @@ -55,5 +55,11 @@ <style name="ConversationsActionBarTabs" parent="@android:style/Widget.Holo.ActionBar.TabView"> <item name="android:background">@drawable/actionbar_tab_indicator</item> </style> + <style name="ConversationsDialog" parent="@android:style/Theme.Holo.Light.Dialog"> + <item name="android:windowNoTitle">true</item> + <item name="TextSizeInfo">12sp</item> + <item name="TextSizeBody">14sp</item> + <item name="TextSizeHeadline">20sp</item> + </style> </resources>
\ No newline at end of file |