blob: ad5efb6ae094ba08699bf2885a9e5ff64f19271c [file] [log] [blame]
Sreyas1963d3f2020-03-09 18:10:08 -07001<?xml version="1.0" encoding="utf-8"?>
2<merge xmlns:android="http://schemas.android.com/apk/res/android">
3 <LinearLayout
4 android:id="@+id/action_buttons"
5 android:layout_width="match_parent"
6 android:layout_height="wrap_content"
7 android:layout_gravity="center"
8 android:orientation="horizontal">
9 <Space
10 android:layout_width="0dp"
11 android:layout_height="1dp"
12 android:layout_weight="1" >
13 </Space>
14 <Button
15 android:id="@+id/action_screenshot"
16 style="@style/OverviewActionButton"
17 android:layout_width="wrap_content"
18 android:layout_height="wrap_content"
19 android:drawableTop="@drawable/ic_screenshot"
20 android:text="@string/action_screenshot" />
21 <Space
22 android:layout_width="0dp"
23 android:layout_height="1dp"
24 android:layout_weight="1" >
25 </Space>
26
27 <Button
28 android:id="@+id/action_share"
29 style="@style/OverviewActionButton"
30 android:layout_width="wrap_content"
31 android:layout_height="wrap_content"
32 android:drawableTop="@drawable/ic_share"
33 android:text="@string/action_share" />
34 <Space
35 android:layout_width="0dp"
36 android:layout_height="1dp"
37 android:layout_weight="1" >
38 </Space>
39 </LinearLayout>
40
41</merge>