summaryrefslogtreecommitdiff
path: root/java/com/android/newbubble/res/layout/bottom_action_base.xml
diff options
context:
space:
mode:
Diffstat (limited to 'java/com/android/newbubble/res/layout/bottom_action_base.xml')
-rw-r--r--java/com/android/newbubble/res/layout/bottom_action_base.xml63
1 files changed, 63 insertions, 0 deletions
diff --git a/java/com/android/newbubble/res/layout/bottom_action_base.xml b/java/com/android/newbubble/res/layout/bottom_action_base.xml
new file mode 100644
index 000000000..bf08e1be5
--- /dev/null
+++ b/java/com/android/newbubble/res/layout/bottom_action_base.xml
@@ -0,0 +1,63 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+ ~ Copyright (C) 2017 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
+ -->
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ android:layout_width="match_parent"
+ android:layout_height="@dimen/bubble_bottom_action_view_height"
+ android:orientation="horizontal"
+ android:background="@drawable/bottom_action_scrim">
+
+ <LinearLayout
+ android:id="@+id/bottom_action_dismiss_layout"
+ android:layout_width="0dp"
+ android:layout_height="match_parent"
+ android:layout_weight="1"
+ android:gravity="center_horizontal|center_vertical">
+ <ImageView
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_marginEnd="@dimen/bubble_button_icon_padding"
+ android:src="@drawable/quantum_ic_clear_vd_theme_24"
+ android:tint="@color/bubble_button_color_white"/>
+ <TextView
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:textAllCaps="true"
+ android:textColor="@color/bubble_button_color_white"
+ android:text="Hide"/>
+ </LinearLayout>
+
+ <LinearLayout
+ android:id="@+id/bottom_action_end_call_layout"
+ android:layout_width="0dp"
+ android:layout_height="match_parent"
+ android:layout_weight="1"
+ android:gravity="center_horizontal|center_vertical">
+ <ImageView
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_marginEnd="@dimen/bubble_button_icon_padding"
+ android:src="@drawable/quantum_ic_call_end_vd_theme_24"
+ android:tint="@color/bubble_button_color_white"/>
+ <TextView
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:textAllCaps="true"
+ android:textColor="@color/bubble_button_color_white"
+ android:text="End call"/>
+ </LinearLayout>
+
+</LinearLayout> \ No newline at end of file