mirror of
https://github.com/oxen-io/session-android.git
synced 2025-06-10 19:18:33 +00:00

It was a fragment before, but it's functionality was inappropriately split between the various layers. This also sets us up better to do tablet stuff in the future, if we choose to do that.
31 lines
1.3 KiB
XML
31 lines
1.3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<org.thoughtcrime.securesms.conversationlist.ConversationListItemInboxZero
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:orientation="vertical"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:paddingTop="30dp">
|
|
|
|
<TextView android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:textSize="25sp"
|
|
android:gravity="center"
|
|
android:padding="16dp"
|
|
android:text="@string/conversation_list_item_inbox_zero__inbox_zeeerrro"/>
|
|
|
|
<ImageView
|
|
android:layout_gravity="center"
|
|
android:src="@drawable/inbox_zero"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"/>
|
|
|
|
|
|
<TextView android:id="@+id/description"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:gravity="center"
|
|
android:textSize="20sp"
|
|
android:padding="16dp"
|
|
android:text="@string/conversation_list_item_inbox_zero__zip_zilch_zero_nada_nyou_re_all_caught_up"/>
|
|
|
|
</org.thoughtcrime.securesms.conversationlist.ConversationListItemInboxZero> |