Advertisement
Glorifind

Untitled

Oct 20th, 2015
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 2.84 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:layout_width="match_parent"
  5.    android:layout_height="match_parent"
  6.    android:orientation="vertical"
  7.    android:background="@color/app_case_bg">
  8.  
  9.     <RelativeLayout
  10.        android:layout_width="match_parent"
  11.        android:layout_height="match_parent"
  12.        tools:ignore="UselessParent">
  13.  
  14.         <LinearLayout
  15.            android:id="@+id/caseHomeCurrent1"
  16.            android:layout_width="match_parent"
  17.            android:layout_height="wrap_content"
  18.            android:orientation="horizontal">
  19.  
  20.             <TextView
  21.                android:layout_width="wrap_content"
  22.                android:layout_height="match_parent"
  23.                android:text="1."
  24.                android:background="@color/app_case_bg"/>
  25.  
  26.            
  27.  
  28.             <LinearLayout
  29.                android:layout_width="match_parent"
  30.                android:layout_height="wrap_content"
  31.                android:orientation="horizontal"
  32.                android:background="@color/app_case_bg"
  33.                android:layout_marginLeft="48dp">
  34.                
  35.                 <TextView
  36.                    android:layout_width="0dp"
  37.                    android:layout_weight="1"
  38.                    android:layout_height="wrap_content" />
  39.                 <ImageButton
  40.                    android:layout_width="48dp"
  41.                    android:layout_height="48dp" />
  42.  
  43.             </LinearLayout>
  44.  
  45.  
  46.         </LinearLayout>
  47.  
  48.         <LinearLayout
  49.            android:id="@+id/caseHomePrev1"
  50.            android:layout_width="match_parent"
  51.            android:layout_height="wrap_content"
  52.            android:orientation="horizontal">
  53.  
  54.             <TextView
  55.                android:layout_width="wrap_content"
  56.                android:layout_height="match_parent"
  57.                android:text="1."
  58.                android:background="@color/app_case_bg"/>
  59.  
  60.             <CheckBox
  61.                android:id="@+id/pointCheckBox1"
  62.                android:layout_width="48dp"
  63.                android:layout_height="48dp" />
  64.  
  65.             <LinearLayout
  66.                android:layout_width="match_parent"
  67.                android:layout_height="wrap_content"
  68.                android:orientation="horizontal"
  69.                android:background="@color/app_case_bg">
  70.  
  71.                 <TextView
  72.                    android:layout_width="0dp"
  73.                    android:layout_weight="1"
  74.                    android:layout_height="wrap_content" />
  75.                 <ImageButton
  76.                    android:layout_width="48dp"
  77.                    android:layout_height="48dp" />
  78.  
  79.             </LinearLayout>
  80.  
  81.  
  82.         </LinearLayout>
  83.  
  84.     </RelativeLayout>
  85.  
  86. </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement