Created chat room group info cell layout

This commit is contained in:
Sylvain Berfini 2017-10-23 14:27:30 +02:00
parent 714abe7d6c
commit f223246f9c
3 changed files with 144 additions and 2 deletions

View file

@ -67,7 +67,7 @@
</RelativeLayout>
<LinearLayout
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/colorG"
@ -83,7 +83,15 @@
android:textColor="@color/colorB"
android:text="@string/chat_room_participants" />
</LinearLayout>
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_centerVertical="true"
android:paddingRight="10dp"
android:src="@drawable/chat_group_add"/>
</RelativeLayout>
<ListView
android:id="@+id/chat_room_participants"

View file

@ -0,0 +1,133 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/layout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center_vertical"
android:background="@color/colorH"
android:orientation="vertical">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="40dp"
android:layout_margin="5dp"
android:gravity="center_vertical">
<RelativeLayout
android:id="@+id/avatar_layout"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:gravity="center">
<ImageView
android:id="@+id/contact_picture"
android:src="@drawable/avatar"
android:contentDescription="@string/content_description_contact_picture"
android:layout_width="35dp"
android:layout_height="35dp"
android:adjustViewBounds="true"
android:layout_alignParentLeft="true"
android:layout_marginLeft="5dp"/>
<ImageView
android:id="@+id/mask"
android:src="@drawable/avatar_mask"
android:layout_width="35dp"
android:layout_height="35dp"
android:adjustViewBounds="true"
android:layout_alignParentLeft="true"
android:layout_marginLeft="5dp"/>
</RelativeLayout>
<CheckBox
android:id="@+id/delete"
android:button="@drawable/chat_group_delete"
android:contentDescription="@string/content_description_delete"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_centerInParent="true"
android:paddingLeft="5dp"
android:paddingRight="5dp" />
<LinearLayout
android:id="@+id/adminLayout"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:layout_toLeftOf="@id/delete">
<LinearLayout
android:id="@+id/isAdminLayout"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginRight="20dp">
<ImageView
android:layout_width="20dp"
android:layout_height="20dp"
android:paddingRight="5dp"
android:layout_gravity="center"
android:adjustViewBounds="true"
android:scaleType="centerInside"
android:src="@drawable/check_selected" />
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:textStyle="bold"
android:textColor="@color/colorB"
android:text="@string/chat_room_infos_admin"/>
</LinearLayout>
<LinearLayout
android:id="@+id/isNotAdminLayout"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginRight="20dp">
<ImageView
android:layout_width="20dp"
android:layout_height="20dp"
android:paddingRight="5dp"
android:layout_gravity="center"
android:adjustViewBounds="true"
android:scaleType="centerInside"
android:src="@drawable/check_unselected" />
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:textColor="@color/colorF"
android:text="@string/chat_room_infos_admin"/>
</LinearLayout>
</LinearLayout>
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toRightOf="@id/avatar_layout"
android:layout_centerVertical="true"
android:layout_toLeftOf="@id/adminLayout"
android:layout_marginLeft="10dp">
<TextView
android:id="@+id/name"
style="@style/font6"
android:lines="1"
android:ellipsize="end"
android:maxLines="1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"/>
</RelativeLayout>
</RelativeLayout>
</LinearLayout>

View file

@ -194,6 +194,7 @@
<string name="administrator">Admin</string>
<string name="conversation_subject_hint">Name your group</string>
<string name="chat_room_infos_title">Infos</string>
<string name="chat_room_infos_admin">Admin</string>
<string name="chat_room_participants">Participants</string>
<string name="chat_room_leave_group">Quitter le groupe</string>