mirror of
https://github.com/oxen-io/session-android.git
synced 2024-12-24 08:47:46 +00:00
Clean up splash screen
This commit is contained in:
parent
1b7a04ab50
commit
fe16a90741
@ -9,8 +9,8 @@
|
||||
android:gravity="center_vertical"
|
||||
android:focusable="true"
|
||||
android:background="@drawable/conversation_item_background"
|
||||
android:paddingStart="48dp"
|
||||
android:paddingEnd="24dp">
|
||||
android:paddingStart="16dp"
|
||||
android:paddingEnd="8dp">
|
||||
|
||||
<org.thoughtcrime.securesms.components.AvatarImageView
|
||||
android:id="@+id/contact_photo_image"
|
||||
|
@ -4,7 +4,7 @@
|
||||
android:id="@+id/prompt_layout"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:background="@color/signal_primary">
|
||||
android:background="@color/loki_darkest_gray">
|
||||
|
||||
|
||||
<ProgressBar android:id="@+id/passphrase_edit"
|
||||
@ -13,15 +13,16 @@
|
||||
android:indeterminate="true"
|
||||
android:padding="10dp"
|
||||
android:layout_centerInParent="true"
|
||||
android:visibility="gone"
|
||||
style="?android:attr/progressBarStyleLargeInverse"/>
|
||||
|
||||
<ImageView android:id="@+id/watermark"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_centerHorizontal="true"
|
||||
android:layout_height="128dp"
|
||||
android:layout_centerInParent="true"
|
||||
android:layout_marginBottom="20dp"
|
||||
android:layout_above="@id/passphrase_edit"
|
||||
android:src="@drawable/icon_transparent"
|
||||
android:src="@drawable/ic_launcher_foreground"
|
||||
android:contentDescription="@string/PassphrasePromptActivity_watermark_content_description"/>
|
||||
|
||||
</RelativeLayout>
|
||||
|
@ -30,8 +30,8 @@
|
||||
|
||||
<ImageView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:src="@drawable/icon_transparent"
|
||||
android:layout_height="128dp"
|
||||
android:src="@drawable/ic_launcher_foreground"
|
||||
android:layout_gravity="center"/>
|
||||
|
||||
</android.support.v7.widget.Toolbar>
|
||||
|
@ -132,21 +132,25 @@ public class ContactsCursorLoader extends CursorLoader {
|
||||
|
||||
private Cursor getRecentsHeaderCursor() {
|
||||
MatrixCursor recentsHeader = new MatrixCursor(CONTACT_PROJECTION);
|
||||
/*
|
||||
recentsHeader.addRow(new Object[]{ getContext().getString(R.string.ContactsCursorLoader_recent_chats),
|
||||
"",
|
||||
ContactsContract.CommonDataKinds.Phone.TYPE_MOBILE,
|
||||
"",
|
||||
ContactsDatabase.DIVIDER_TYPE });
|
||||
*/
|
||||
return recentsHeader;
|
||||
}
|
||||
|
||||
private Cursor getContactsHeaderCursor() {
|
||||
MatrixCursor contactsHeader = new MatrixCursor(CONTACT_PROJECTION, 1);
|
||||
/*
|
||||
contactsHeader.addRow(new Object[] { getContext().getString(R.string.ContactsCursorLoader_contacts),
|
||||
"",
|
||||
ContactsContract.CommonDataKinds.Phone.TYPE_MOBILE,
|
||||
"",
|
||||
ContactsDatabase.DIVIDER_TYPE });
|
||||
*/
|
||||
return contactsHeader;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user