mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2026-05-13 07:10:50 -05:00
34 lines
1.0 KiB
XML
34 lines
1.0 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:gravity="center"
|
|
android:orientation="vertical">
|
|
|
|
<Button
|
|
android:id="@+id/windowSample"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="Window sample" />
|
|
|
|
<Button
|
|
android:id="@+id/overlayWindowSample"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="Action Bar overlay window sample" />
|
|
|
|
<Button
|
|
android:id="@+id/contentSample"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="Content sample" />
|
|
|
|
<Button
|
|
android:id="@+id/listActivitySample"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="ListActivity sample" />
|
|
|
|
</LinearLayout>
|
|
|