~nicolariolini/micronaet-android/trunk

« back to all changes in this revision

Viewing changes to WireruleCalculator/res/layout/activity_catalog_twopane.xml

  • Committer: Nicola Riolini
  • Date: 2014-07-10 06:20:14 UTC
  • Revision ID: nicola.riolini@gmail.com-20140710062014-b2xk8ojvakh5dvhw
Inizio app di prova

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
 
2
    xmlns:tools="http://schemas.android.com/tools"
 
3
    android:layout_width="match_parent"
 
4
    android:layout_height="match_parent"
 
5
    android:layout_marginLeft="16dp"
 
6
    android:layout_marginRight="16dp"
 
7
    android:baselineAligned="false"
 
8
    android:divider="?android:attr/dividerHorizontal"
 
9
    android:orientation="horizontal"
 
10
    android:showDividers="middle"
 
11
    tools:context="com.micronaet.wirerule.calculator.CatalogListActivity" >
 
12
 
 
13
    <!--
 
14
    This layout is a two-pane layout for the Catalogs
 
15
    master/detail flow. See res/values-large/refs.xml and
 
16
    res/values-sw600dp/refs.xml for an example of layout aliases
 
17
    that replace the single-pane version of the layout with
 
18
    this two-pane version.
 
19
 
 
20
    For more on layout aliases, see:
 
21
    http://developer.android.com/training/multiscreen/screensizes.html#TaskUseAliasFilters
 
22
    -->
 
23
 
 
24
    <fragment
 
25
        android:id="@+id/catalog_list"
 
26
        android:name="com.micronaet.wirerule.calculator.CatalogListFragment"
 
27
        android:layout_width="0dp"
 
28
        android:layout_height="match_parent"
 
29
        android:layout_weight="1"
 
30
        tools:layout="@android:layout/list_content" />
 
31
 
 
32
    <FrameLayout
 
33
        android:id="@+id/catalog_detail_container"
 
34
        android:layout_width="0dp"
 
35
        android:layout_height="match_parent"
 
36
        android:layout_weight="3" />
 
37
 
 
38
</LinearLayout>