Advertisement
HenX

Untitled

Dec 22nd, 2014
172
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 2.71 KB | None | 0 0
  1. <RelativeLayout 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.    tools:context="com.example.cloudzwi0009.MainActivity" >
  6.  
  7.     <LinearLayout
  8.        android:layout_width="match_parent"
  9.        android:layout_height="match_parent"
  10.        android:background="#333333"
  11.        android:gravity="center_horizontal"
  12.        android:orientation="vertical" >
  13.  
  14.         <Button
  15.            android:id="@+id/uploadButton"
  16.            android:layout_width="wrap_content"
  17.            android:layout_height="wrap_content"
  18.            android:layout_centerInParent="true"
  19.            android:text="Upload"
  20.            android:textColor="#FFFFFF" />
  21.  
  22.         <View
  23.            android:layout_width="fill_parent"
  24.            android:layout_height="1dp"
  25.            android:background="#000000"
  26.            android:paddingBottom="5px" />
  27.  
  28.         <LinearLayout
  29.            android:layout_width="match_parent"
  30.            android:layout_height="50dp"
  31.            android:background="#212021"
  32.            android:gravity="center_vertical"
  33.            android:paddingLeft="10px" >
  34.  
  35.             <TextView
  36.                android:id="@+id/textView1"
  37.                android:layout_width="wrap_content"
  38.                android:layout_height="wrap_content"
  39.                android:paddingBottom="5px"
  40.                android:paddingTop="5px"
  41.                android:text="Files to upload"
  42.                android:textAppearance="?android:attr/textAppearanceMedium"
  43.                android:textColor="#FFFFFF" />
  44.  
  45.             <LinearLayout
  46.                android:layout_width="match_parent"
  47.                android:layout_height="wrap_content"
  48.                android:background="#212021"
  49.                android:gravity="right"
  50.                android:paddingRight="10px" >
  51.  
  52.                 <ImageButton
  53.                    android:id="@+id/syncButton"
  54.                    android:layout_width="wrap_content"
  55.                    android:layout_height="wrap_content"
  56.                    android:layout_alignParentRight="true"
  57.                    android:src="@drawable/ic_refresh" />
  58.             </LinearLayout>
  59.         </LinearLayout>
  60.  
  61.         <View
  62.            android:layout_width="fill_parent"
  63.            android:layout_height="1dp"
  64.            android:background="#000000"
  65.            android:paddingBottom="5px" />
  66.  
  67.         <ListView
  68.            android:id="@+id/listView"
  69.            android:layout_width="fill_parent"
  70.            android:layout_height="fill_parent"
  71.            android:background="#FFFFFF" >
  72.         </ListView>
  73.     </LinearLayout>
  74.  
  75. </RelativeLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement