123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109 |
- <?xml version="1.0" encoding="utf-8"?>
- <ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_height="match_parent"
- android:layout_width="wrap_content"
- xmlns:app="http://schemas.android.com/apk/res-auto">
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:background="@color/grey_light_light"
- android:orientation="vertical">
- <TextView
- android:id="@+id/area_groups_serachbar"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:background="@color/grey_light"
- android:gravity="center"
- android:text="请输入群名字"
- android:visibility="gone"/>
- <android.support.v7.widget.RecyclerView
- android:id="@+id/area_groups_recyclerview"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:background="@color/white" />
- <View style="@style/horizontal_light_thin_divider" />
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:background="@color/white"
- android:gravity="center_vertical"
- android:orientation="horizontal"
- android:padding="10dp">
- <ImageView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:src="@drawable/ico_01_more" />
- <TextView
- android:id="@+id/area_groups_more_rooms_tv"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginLeft="10dp"
- android:layout_marginStart="10dp"
- android:text="更多地区房间"
- android:textColor="@color/grey_light" />
- </LinearLayout>
- <View style="@style/horizontal_light_thin_divider" />
- <View
- style="@style/horizontal_light_thin_divider"
- android:layout_marginTop="20dp" />
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:background="@color/white"
- android:gravity="center_vertical"
- android:orientation="horizontal"
- android:padding="10dp">
- <ImageView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:src="@drawable/ico_01_fujinqun" />
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginLeft="10dp"
- android:layout_marginStart="10dp"
- android:text="附近群" />
- <TextView
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:gravity="end"
- android:text="用户创建群组" />
- </LinearLayout>
- <View style="@style/horizontal_light_thin_divider" />
- <TextView
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:background="@color/white"
- android:padding="10dp"
- android:text="最近活跃的群" />
- <View style="@style/horizontal_light_thin_divider" />
- <android.support.v7.widget.RecyclerView
- android:id="@+id/area_groups_nearby_recyclerview"
- android:layout_width="match_parent"
- android:layout_height="400dp"
- android:background="@color/white" />
- <View style="@style/horizontal_light_thin_divider"
- android:layout_marginTop="30dp"/>
- </LinearLayout>
- </ScrollView>
|