BlackBorn

design

Oct 12th, 2013
318
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 2.50 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3.     android:layout_width="wrap_content"
  4.     android:layout_height="wrap_content"
  5.     android:orientation="vertical" >
  6.  
  7.     <LinearLayout
  8.         android:id="@+id/optionPanel1"
  9.         android:layout_width="match_parent"
  10.         android:layout_height="50dip"
  11.         android:focusable="true"
  12.         android:focusableInTouchMode="true"
  13.         android:orientation="horizontal" >
  14.  
  15.         <ImageView
  16.             android:id="@+id/optionsButton1"
  17.             android:layout_width="32dp"
  18.             android:layout_height="32dp"
  19.             android:contentDescription="Icon"
  20.             android:src="@drawable/ic_launcher" />
  21.        
  22.         <ImageView
  23.             android:id="@+id/optionsButton2"
  24.             android:layout_width="32dp"
  25.             android:layout_height="32dp"
  26.             android:contentDescription="Icon"
  27.             android:src="@drawable/ic_launcher" />
  28.        
  29.         <ImageView
  30.             android:id="@+id/optionsButton3"
  31.             android:layout_width="32dp"
  32.             android:layout_height="32dp"
  33.             android:contentDescription="Icon"
  34.             android:src="@drawable/ic_launcher" />
  35.     </LinearLayout>
  36.  
  37.     <LinearLayout
  38.         android:id="@+id/optionPanel2"
  39.         android:layout_width="match_parent"
  40.         android:layout_height="50dip"
  41.         android:focusable="true"
  42.         android:focusableInTouchMode="true"
  43.         android:visibility="visible"
  44.         android:orientation="horizontal" >
  45.        
  46.         <ImageView
  47.             android:id="@+id/optionsButton4"
  48.             android:layout_width="32dp"
  49.             android:layout_height="32dp"
  50.             android:contentDescription="Icon"
  51.             android:src="@drawable/ic_launcher" />
  52.        
  53.         <ImageView
  54.             android:id="@+id/optionsButton5"
  55.             android:layout_width="32dp"
  56.             android:layout_height="32dp"
  57.             android:contentDescription="Icon"
  58.             android:src="@drawable/ic_launcher" />
  59.        
  60.         <ImageView
  61.             android:id="@+id/optionsButton6"
  62.             android:layout_width="32dp"
  63.             android:layout_height="32dp"
  64.             android:contentDescription="Icon"
  65.             android:src="@drawable/ic_launcher" />
  66.     </LinearLayout>
  67.  
  68.     <ListView
  69.         android:id="@+id/moreOptions"
  70.         android:layout_width="wrap_content"
  71.         android:layout_height="fill_parent" />
  72.  
  73. </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment