xref: /aosp_15_r20/development/samples/WiFiDirectDemo/res/layout/main.xml (revision 90c8c64db3049935a07c6143d7fd006e26f8ecca)
1*90c8c64dSAndroid Build Coastguard Worker<?xml version="1.0" encoding="utf-8"?>
2*90c8c64dSAndroid Build Coastguard Worker<LinearLayout
3*90c8c64dSAndroid Build Coastguard Worker    xmlns:android="http://schemas.android.com/apk/res/android"
4*90c8c64dSAndroid Build Coastguard Worker    android:orientation="vertical"
5*90c8c64dSAndroid Build Coastguard Worker    android:layout_width="fill_parent"
6*90c8c64dSAndroid Build Coastguard Worker    android:layout_height="fill_parent">
7*90c8c64dSAndroid Build Coastguard Worker    <LinearLayout
8*90c8c64dSAndroid Build Coastguard Worker        android:layout_width="match_parent"
9*90c8c64dSAndroid Build Coastguard Worker        android:id="@+id/linearLayout1"
10*90c8c64dSAndroid Build Coastguard Worker        android:layout_height="match_parent"
11*90c8c64dSAndroid Build Coastguard Worker        android:orientation="vertical">
12*90c8c64dSAndroid Build Coastguard Worker        <fragment
13*90c8c64dSAndroid Build Coastguard Worker            class="com.example.android.wifidirect.DeviceListFragment"
14*90c8c64dSAndroid Build Coastguard Worker            android:id="@+id/frag_list"
15*90c8c64dSAndroid Build Coastguard Worker            android:layout_width="match_parent"
16*90c8c64dSAndroid Build Coastguard Worker            android:layout_height="@dimen/phone_list_height">
17*90c8c64dSAndroid Build Coastguard Worker            <!-- Preview: layout=@layout/row_devices -->
18*90c8c64dSAndroid Build Coastguard Worker        </fragment>
19*90c8c64dSAndroid Build Coastguard Worker        <fragment
20*90c8c64dSAndroid Build Coastguard Worker            class="com.example.android.wifidirect.DeviceDetailFragment"
21*90c8c64dSAndroid Build Coastguard Worker            android:id="@+id/frag_detail"
22*90c8c64dSAndroid Build Coastguard Worker            android:layout_width="match_parent"
23*90c8c64dSAndroid Build Coastguard Worker            android:layout_height="match_parent">
24*90c8c64dSAndroid Build Coastguard Worker            <!-- Preview: layout=@layout/device_detail -->
25*90c8c64dSAndroid Build Coastguard Worker        </fragment>
26*90c8c64dSAndroid Build Coastguard Worker    </LinearLayout>
27*90c8c64dSAndroid Build Coastguard Worker</LinearLayout>
28