Refactor the multiple uploads list view into a fragment

This commit is contained in:
YuviPanda 2013-03-17 03:50:21 +05:30
parent ad89f2564f
commit 154a559b86
5 changed files with 224 additions and 164 deletions

View file

@ -0,0 +1,22 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<EditText android:id="@+id/multipleBaseTitle"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="@string/multiple_share_base_title"
/>
<GridView android:id="@+id/multipleShareBackground"
android:layout_height="fill_parent"
android:layout_width="fill_parent"
android:stretchMode="columnWidth"
android:numColumns="auto_fit"
android:listSelector="@null"
android:fadingEdge="none"
android:fastScrollEnabled="false"
/>
</LinearLayout>