JLChen
2021-11-05 de72a7843ceb868c89fc11983e315849caa28573
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/activity_appliances"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context="com.hdl.sdk.ttl_sdk.activity.AppliancesListActivity">
 
    <include
        android:id="@+id/hdl_top_bar_layout"
        layout="@layout/hdl_toolbar_top_view_b"/>
 
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_below="@+id/hdl_top_bar_layout">
 
        <ListView
            android:id="@+id/lv"
            android:layout_width="match_parent"
            android:layout_height="match_parent"></ListView>
    </LinearLayout>
 
</RelativeLayout>