12345678910111213141516171819 |
- <?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:background="@color/main_color"
- android:orientation="horizontal">
- <FrameLayout
- android:id="@+id/fl_slidingview_parent"
- android:layout_width="0dp"
- android:layout_height="match_parent"
- android:layout_weight="1"/>
- <View
- android:layout_width="@dimen/DIMEN_1DP"
- android:layout_height="match_parent"
- android:background="@color/alpha_20_white"/>
- </LinearLayout>
|