Advertisement
Guest User

xml

a guest
Oct 25th, 2016
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.66 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3.     xmlns:tools="http://schemas.android.com/tools"
  4.     android:id="@+id/activity_fragments"
  5.     android:layout_width="match_parent"
  6.     android:layout_height="match_parent"
  7.     android:paddingBottom="@dimen/activity_vertical_margin"
  8.     android:paddingLeft="@dimen/activity_horizontal_margin"
  9.     android:paddingRight="@dimen/activity_horizontal_margin"
  10.     android:paddingTop="@dimen/activity_vertical_margin"
  11.     tools:context="welder.loginsql.Fragments"
  12.     android:background="#3F51B5"
  13.     android:baselineAligned="false">
  14.  
  15.     <LinearLayout
  16.         android:layout_width="0dp"
  17.         android:layout_height="match_parent"
  18.         android:layout_weight="3"
  19.         android:background="#ffffff"
  20.         android:layout_margin="10dp"
  21.         android:orientation="vertical">
  22.         <ListView
  23.             android:id="@+id/listView1"
  24.             android:layout_width="match_parent"
  25.             android:layout_height="wrap_content"></ListView>
  26.     </LinearLayout>
  27.    
  28.     <LinearLayout
  29.         android:id="@+id/layout_direito"
  30.         android:layout_width="0dp"
  31.         android:background="#ffffff"
  32.         android:layout_weight="7"
  33.         android:layout_height="match_parent"
  34.         android:orientation="vertical"
  35.         android:layout_margin="10dp">
  36.  
  37.         <!--<fragment
  38.             android:layout_width="match_parent"
  39.             android:tag="frag"
  40.             android:layout_height="wrap_content"
  41.             android:name="welder.loginsql.Fragment1"
  42.             android:id="@+id/fragment1" />-->
  43.     </LinearLayout>
  44.  
  45. </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement