Browse Source

Fix magic numbers in upload_files_layout.xml #12

Divay Prakash 8 years ago
parent
commit
918bdd53e7
1 changed files with 2 additions and 2 deletions
  1. 2 2
      res/layout/upload_files_layout.xml

+ 2 - 2
res/layout/upload_files_layout.xml

@@ -28,7 +28,7 @@
     <fragment
         android:id="@+id/local_files_list"
         android:layout_width="match_parent"
-        android:layout_height="0dip"
+        android:layout_height="@dimen/zero"
         android:layout_weight="1"
         class="com.owncloud.android.ui.fragment.LocalFileListFragment" />
 
@@ -63,7 +63,7 @@
 
         <Spinner
             android:layout_width="match_parent"
-            android:layout_height="0dp"
+            android:layout_height="@dimen/zero"
             android:id="@+id/upload_files_spinner_behaviour"
             android:layout_weight="1"/>
     </LinearLayout>