| 1234567891011121314151617181920212223242526272829 |
- <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:tools="http://schemas.android.com/tools"
- xmlns:mstb="http://schemas.android.com/apk/res-auto"
- android:id="@+id/statelayout"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- tools:context="com.example.david.libretasker.InputSelector.MultiState">
- <LinearLayout
- android:orientation="vertical"
- android:layout_width="match_parent"
- android:layout_height="wrap_content">
- <TextView
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:id="@+id/textView5" />
- <org.honorato.multistatetogglebutton.MultiStateToggleButton
- android:id="@+id/mstb_multi_id"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginTop="10dip"
- mstb:mstbPrimaryColor="@color/black"
- mstb:mstbSecondaryColor="@color/gray"
- />
- </LinearLayout>
- </FrameLayout>
|