android13/vendor/rockchip/common/apps/WifiDisplay/res/layout/wifip2p.xml

27 lines
1002 B
XML
Raw Normal View History

2024-06-22 08:45:49 -04:00
<?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:orientation="vertical"
android:background="@drawable/wfd_bg">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/wfd_head"
android:text="@string/wfd_device_name"
android:paddingLeft="8dip"
android:gravity="center_vertical"
android:textColor="@android:color/white"
android:textSize="16sp"
/>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dip"
android:layout_weight="1">
<ListView
android:id="@android:id/list"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:cacheColorHint="@android:color/transparent"/>
</LinearLayout>
</LinearLayout>