mirror of
https://github.com/LawnchairLauncher/lawnchair.git
synced 2026-02-27 15:26:58 +00:00
42 lines
1.4 KiB
XML
42 lines
1.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<merge xmlns:android="http://schemas.android.com/apk/res/android">
|
|
<LinearLayout
|
|
android:id="@+id/action_buttons"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center"
|
|
android:orientation="horizontal">
|
|
<Space
|
|
android:layout_width="0dp"
|
|
android:layout_height="1dp"
|
|
android:layout_weight="1" >
|
|
</Space>
|
|
<Button
|
|
android:id="@+id/action_screenshot"
|
|
style="@style/OverviewActionButton"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:drawableTop="@drawable/ic_screenshot"
|
|
android:text="@string/action_screenshot" />
|
|
<Space
|
|
android:layout_width="0dp"
|
|
android:layout_height="1dp"
|
|
android:layout_weight="1" >
|
|
</Space>
|
|
|
|
<Button
|
|
android:id="@+id/action_share"
|
|
style="@style/OverviewActionButton"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:drawableTop="@drawable/ic_share"
|
|
android:text="@string/action_share" />
|
|
<Space
|
|
android:layout_width="0dp"
|
|
android:layout_height="1dp"
|
|
android:layout_weight="1" >
|
|
</Space>
|
|
</LinearLayout>
|
|
|
|
</merge>
|