Advertisement
skiddhard

tag_friends_list.xml

May 31st, 2012
225
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.97 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2.  
  3. <LinearLayout
  4.    xmlns:android="http://schemas.android.com/apk/res/android"
  5.    android:orientation="vertical"
  6.    android:layout_width="fill_parent"
  7.    android:layout_height="fill_parent"
  8.     android:gravity="center"    >
  9.    
  10.     <EditText
  11.        android:id="@+id/editFilterList"
  12.        android:layout_width="fill_parent"
  13.        android:layout_height="wrap_content"
  14.        android:layout_margin="4dp"
  15.        android:hint="Type Friends Name"
  16.        android:inputType="text"
  17.         android:maxLines="1"    >
  18.     </EditText>
  19.    
  20.     <GridView
  21.        android:id="@+id/gridFriends"
  22.        android:layout_width="fill_parent"
  23.        android:layout_height="fill_parent"
  24.        android:layout_margin="5dp"
  25.        android:numColumns="3"
  26.        android:columnWidth="90dp"
  27.        android:stretchMode="columnWidth"
  28.        android:gravity="center"
  29.         android:fastScrollEnabled="true"    >
  30.     </GridView>
  31.    
  32. </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement