Просмотр исходного кода

Add Scrollview in list fragment layout for showing text message

jabarros 10 лет назад
Родитель
Сommit
d751df3daa
1 измененных файлов с 12 добавлено и 9 удалено
  1. 12 9
      res/layout/list_fragment.xml

+ 12 - 9
res/layout/list_fragment.xml

@@ -49,15 +49,18 @@
         android:layout_width="match_parent"
         android:layout_height="match_parent"
         android:visibility="gone" >
-
-        <TextView
-            android:id="@+id/empty_list_view"
-            android:layout_width="match_parent"
-            android:layout_height="wrap_content"
-            android:layout_gravity="center"
-            android:gravity="center_vertical|center_horizontal"
-            android:text="@string/empty"
-            android:visibility="visible" />
+            <ScrollView
+                android:layout_width="match_parent"
+                android:layout_height="match_parent" >
+                <TextView
+                    android:id="@+id/empty_list_view"
+                    android:layout_width="match_parent"
+                    android:layout_height="wrap_content"
+                    android:layout_gravity="center"
+                    android:gravity="center_vertical|center_horizontal"
+                    android:text="@string/empty"
+                    android:visibility="visible" />
+            </ScrollView>
     </android.support.v4.widget.SwipeRefreshLayout>
 
 </FrameLayout>