mirror of
https://github.com/pierre42100/ComunicAndroid
synced 2025-07-03 23:25:03 +00:00
Improved list appearance.
This commit is contained in:
@ -17,31 +17,35 @@
|
||||
|
||||
<!-- Conversation name -->
|
||||
<TextView
|
||||
android:id="@+id/fragment_conversationslist_item_name"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:textSize="16sp"
|
||||
android:textStyle="bold"
|
||||
tools:text="Conversation name" />
|
||||
android:id="@+id/fragment_conversationslist_item_name"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:textSize="16sp"
|
||||
android:textStyle="bold"
|
||||
tools:text="Conversation name"
|
||||
android:drawableStart="@drawable/ic_circle"
|
||||
android:drawableTint="@color/colorPrimary"
|
||||
android:drawablePadding="5dp"/>
|
||||
|
||||
<!-- Number of members -->
|
||||
<LinearLayout
|
||||
<!-- Number of members -->
|
||||
<LinearLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:orientation="horizontal">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="@dimen/fragment_conversations_list_icon_width"
|
||||
android:layout_height="@dimen/fragment_conversations_list_icon_height"
|
||||
android:layout_marginEnd="2dp"
|
||||
android:src="@drawable/ic_friends" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/fragment_conversationslist_item_number_members"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:orientation="horizontal">
|
||||
android:layout_height="match_parent"
|
||||
tools:text="x Members" />
|
||||
|
||||
<ImageView
|
||||
android:layout_width="@dimen/fragment_conversations_list_icon_width"
|
||||
android:layout_height="@dimen/fragment_conversations_list_icon_height"
|
||||
android:src="@drawable/ic_friends" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/fragment_conversationslist_item_number_members"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="match_parent"
|
||||
tools:text="x Members" />
|
||||
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
@ -53,7 +57,7 @@
|
||||
<ImageView
|
||||
android:layout_width="@dimen/fragment_conversations_list_icon_width"
|
||||
android:layout_height="@dimen/fragment_conversations_list_icon_height"
|
||||
android:src="@android:drawable/ic_menu_my_calendar"/>
|
||||
android:src="@android:drawable/ic_menu_my_calendar" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/fragment_conversationslist_item_lastactive"
|
||||
|
Reference in New Issue
Block a user