Roll NDK to pick std::deque patch.
[android_tools.git] / sdk / tools / templates / other / ListFragment / root / res / layout / fragment_grid.xml
blob333ea8ee095c008ee1c308a295f9941618eaec6d
1 <?xml version="1.0" encoding="utf-8"?>
2 <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
3     xmlns:tools="http://schemas.android.com/tools"
4     android:layout_width="match_parent"
5     android:layout_height="match_parent"
6     tools:context="${relativePackage}.${className}">
8     <GridView
9         android:id="@android:id/list"
10         android:layout_width="match_parent"
11         android:layout_height="match_parent"
12         android:numColumns="2" />
14     <TextView
15         android:id="@android:id/empty"
16         android:layout_width="match_parent"
17         android:layout_height="match_parent"
18         android:gravity="center" />
20 </FrameLayout>