1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:app="http://schemas.android.com/apk/res-auto"
- xmlns:tools="http://schemas.android.com/tools"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="#00000000"
- android:orientation="vertical">
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:orientation="horizontal">
- <!--当前主界面的item-->
- <LinearLayout
- android:layout_width="wrap_content"
- android:layout_height="match_parent"
- android:background="#ff1f2228"
- android:orientation="vertical">
- <ListView
- android:id="@+id/tysdkn_main_left_lisview"
- android:layout_width="40dp"
- android:layout_height="match_parent"
- android:divider="#00000000"
- android:listSelector="@null"
- android:scrollbars="none">
- </ListView>
- </LinearLayout>
- <FrameLayout
- android:id="@+id/tysdkn_frame_contain"
- android:layout_width="288dp"
- android:layout_height="match_parent"
- android:background="#F0FFFFFF"
- android:orientation="vertical">
- </FrameLayout>
- <!--android:background="#DCffffff"-->
- <View
- android:id="@+id/tysdkn_ty_top_head"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="#00000000"/>
- </LinearLayout>
- </LinearLayout>
|