Created
May 16, 2013 10:27
-
-
Save rtfb/5590805 to your computer and use it in GitHub Desktop.
bzbz
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | |
xmlns:tools="http://schemas.android.com/tools" | |
android:layout_width="match_parent" | |
android:layout_height="match_parent" | |
android:layout_marginLeft="16dp" | |
android:layout_marginRight="16dp" | |
android:baselineAligned="false" | |
android:divider="?android:attr/dividerHorizontal" | |
android:orientation="horizontal" | |
android:showDividers="middle" | |
tools:context=".ItemListActivity"> | |
<!-- | |
This layout is a two-pane layout for the Items | |
master/detail flow. See res/values-large/refs.xml and | |
res/values-sw600dp/refs.xml for an example of layout aliases | |
that replace the single-pane version of the layout with | |
this two-pane version. | |
For more on layout aliases, see: | |
http://developer.android.com/training/multiscreen/screensizes.html#TaskUseAliasFilters | |
--> | |
<FrameLayout | |
android:id="@+id/item_detail_container" | |
android:layout_width="0dp" | |
android:layout_height="match_parent" | |
android:layout_weight="3" > | |
<fragment | |
android:id="@+id/item_list" | |
android:name="com.bentley.test.teststudio.ItemListFragment" | |
android:layout_width="96dp" | |
android:layout_height="match_parent" | |
tools:layout="@android:layout/list_content" | |
android:layout_gravity="left|center_vertical"/> | |
<CheckedTextView | |
android:layout_width="wrap_content" | |
android:layout_height="wrap_content" | |
android:text="@string/cbox" | |
android:id="@+id/checkedTextView" | |
android:layout_gravity="center_horizontal|top"/> | |
</FrameLayout> | |
</LinearLayout> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment