mirror of
https://github.com/deltachat/deltachat-android.git
synced 2025-10-03 09:49:21 +02:00
Merge pull request #3814 from deltachat/adb/issue-3795
target SDK 35 and implement edge-to-edge
This commit is contained in:
commit
7d7f62dae1
51 changed files with 227 additions and 103 deletions
|
@ -2,6 +2,7 @@
|
||||||
|
|
||||||
## Unreleased
|
## Unreleased
|
||||||
|
|
||||||
|
* target Android 15
|
||||||
* Improve readability of info messages in dark mode
|
* Improve readability of info messages in dark mode
|
||||||
|
|
||||||
## v2.11.0
|
## v2.11.0
|
||||||
|
|
|
@ -15,7 +15,7 @@ repositories {
|
||||||
android {
|
android {
|
||||||
namespace "org.thoughtcrime.securesms"
|
namespace "org.thoughtcrime.securesms"
|
||||||
flavorDimensions "none"
|
flavorDimensions "none"
|
||||||
compileSdk 34
|
compileSdk 35
|
||||||
|
|
||||||
// Set NDK version to strip native libraries.
|
// Set NDK version to strip native libraries.
|
||||||
// Even though we compile our libraries outside Gradle with `scripts/ndk-make.sh`,
|
// Even though we compile our libraries outside Gradle with `scripts/ndk-make.sh`,
|
||||||
|
@ -34,7 +34,7 @@ android {
|
||||||
multiDexEnabled true
|
multiDexEnabled true
|
||||||
|
|
||||||
minSdkVersion 21
|
minSdkVersion 21
|
||||||
targetSdkVersion 34
|
targetSdkVersion 35
|
||||||
|
|
||||||
vectorDrawables.useSupportLibrary = true
|
vectorDrawables.useSupportLibrary = true
|
||||||
|
|
||||||
|
|
|
@ -11,7 +11,6 @@ import android.view.Menu;
|
||||||
import android.view.MenuItem;
|
import android.view.MenuItem;
|
||||||
import android.view.View;
|
import android.view.View;
|
||||||
import android.view.ViewGroup;
|
import android.view.ViewGroup;
|
||||||
import android.view.Window;
|
|
||||||
import android.widget.TextView;
|
import android.widget.TextView;
|
||||||
|
|
||||||
import androidx.annotation.NonNull;
|
import androidx.annotation.NonNull;
|
||||||
|
@ -221,16 +220,11 @@ public class AllMediaDocumentsFragment
|
||||||
|
|
||||||
private class ActionModeCallback implements ActionMode.Callback {
|
private class ActionModeCallback implements ActionMode.Callback {
|
||||||
|
|
||||||
private int originalStatusBarColor;
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean onCreateActionMode(ActionMode mode, Menu menu) {
|
public boolean onCreateActionMode(ActionMode mode, Menu menu) {
|
||||||
mode.getMenuInflater().inflate(R.menu.profile_context, menu);
|
mode.getMenuInflater().inflate(R.menu.profile_context, menu);
|
||||||
mode.setTitle("1");
|
mode.setTitle("1");
|
||||||
|
|
||||||
Window window = getActivity().getWindow();
|
|
||||||
originalStatusBarColor = window.getStatusBarColor();
|
|
||||||
window.setStatusBarColor(getResources().getColor(R.color.action_mode_status_bar));
|
|
||||||
setCorrectMenuVisibility(menu);
|
setCorrectMenuVisibility(menu);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
@ -279,8 +273,6 @@ public class AllMediaDocumentsFragment
|
||||||
public void onDestroyActionMode(ActionMode mode) {
|
public void onDestroyActionMode(ActionMode mode) {
|
||||||
actionMode = null;
|
actionMode = null;
|
||||||
getListAdapter().clearSelection();
|
getListAdapter().clearSelection();
|
||||||
|
|
||||||
getActivity().getWindow().setStatusBarColor(originalStatusBarColor);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -11,7 +11,6 @@ import android.view.Menu;
|
||||||
import android.view.MenuItem;
|
import android.view.MenuItem;
|
||||||
import android.view.View;
|
import android.view.View;
|
||||||
import android.view.ViewGroup;
|
import android.view.ViewGroup;
|
||||||
import android.view.Window;
|
|
||||||
import android.widget.TextView;
|
import android.widget.TextView;
|
||||||
|
|
||||||
import androidx.annotation.NonNull;
|
import androidx.annotation.NonNull;
|
||||||
|
@ -212,16 +211,11 @@ public class AllMediaGalleryFragment
|
||||||
|
|
||||||
private class ActionModeCallback implements ActionMode.Callback {
|
private class ActionModeCallback implements ActionMode.Callback {
|
||||||
|
|
||||||
private int originalStatusBarColor;
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean onCreateActionMode(ActionMode mode, Menu menu) {
|
public boolean onCreateActionMode(ActionMode mode, Menu menu) {
|
||||||
mode.getMenuInflater().inflate(R.menu.profile_context, menu);
|
mode.getMenuInflater().inflate(R.menu.profile_context, menu);
|
||||||
mode.setTitle("1");
|
mode.setTitle("1");
|
||||||
|
|
||||||
Window window = getActivity().getWindow();
|
|
||||||
originalStatusBarColor = window.getStatusBarColor();
|
|
||||||
window.setStatusBarColor(getResources().getColor(R.color.action_mode_status_bar));
|
|
||||||
setCorrectMenuVisibility(menu);
|
setCorrectMenuVisibility(menu);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
@ -266,8 +260,6 @@ public class AllMediaGalleryFragment
|
||||||
public void onDestroyActionMode(ActionMode mode) {
|
public void onDestroyActionMode(ActionMode mode) {
|
||||||
actionMode = null;
|
actionMode = null;
|
||||||
getListAdapter().clearSelection();
|
getListAdapter().clearSelection();
|
||||||
|
|
||||||
getActivity().getWindow().setStatusBarColor(originalStatusBarColor);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -77,6 +77,7 @@ public class ApplicationPreferencesActivity extends PassphraseRequiredActionBarA
|
||||||
|
|
||||||
//noinspection ConstantConditions
|
//noinspection ConstantConditions
|
||||||
this.getSupportActionBar().setDisplayHomeAsUpEnabled(true);
|
this.getSupportActionBar().setDisplayHomeAsUpEnabled(true);
|
||||||
|
getSupportActionBar().setElevation(0); // TODO: use custom toolbar instead
|
||||||
|
|
||||||
if (icicle == null) {
|
if (icicle == null) {
|
||||||
initFragment(R.id.fragment, new ApplicationPreferenceFragment());
|
initFragment(R.id.fragment, new ApplicationPreferenceFragment());
|
||||||
|
|
|
@ -7,10 +7,12 @@ import android.view.MenuItem;
|
||||||
import android.view.ViewConfiguration;
|
import android.view.ViewConfiguration;
|
||||||
import android.view.WindowManager;
|
import android.view.WindowManager;
|
||||||
|
|
||||||
|
import androidx.activity.EdgeToEdge;
|
||||||
import androidx.annotation.IdRes;
|
import androidx.annotation.IdRes;
|
||||||
import androidx.annotation.NonNull;
|
import androidx.annotation.NonNull;
|
||||||
import androidx.annotation.Nullable;
|
import androidx.annotation.Nullable;
|
||||||
import androidx.appcompat.app.AppCompatActivity;
|
import androidx.appcompat.app.AppCompatActivity;
|
||||||
|
import androidx.core.view.WindowCompat;
|
||||||
import androidx.fragment.app.Fragment;
|
import androidx.fragment.app.Fragment;
|
||||||
|
|
||||||
import org.thoughtcrime.securesms.util.DynamicTheme;
|
import org.thoughtcrime.securesms.util.DynamicTheme;
|
||||||
|
@ -31,7 +33,9 @@ public abstract class BaseActionBarActivity extends AppCompatActivity {
|
||||||
@Override
|
@Override
|
||||||
protected void onCreate(Bundle savedInstanceState) {
|
protected void onCreate(Bundle savedInstanceState) {
|
||||||
onPreCreate();
|
onPreCreate();
|
||||||
|
EdgeToEdge.enable(this); // docs says to use: WindowCompat.enableEdgeToEdge(getWindow()); but it is not available
|
||||||
super.onCreate(savedInstanceState);
|
super.onCreate(savedInstanceState);
|
||||||
|
WindowCompat.getInsetsController(getWindow(), getWindow().getDecorView()).setAppearanceLightStatusBars(false); // force white text in status bar
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
|
@ -10,9 +10,7 @@ import android.annotation.SuppressLint;
|
||||||
import android.app.Activity;
|
import android.app.Activity;
|
||||||
import android.content.Context;
|
import android.content.Context;
|
||||||
import android.content.Intent;
|
import android.content.Intent;
|
||||||
import android.content.res.TypedArray;
|
|
||||||
import android.graphics.Bitmap;
|
import android.graphics.Bitmap;
|
||||||
import android.graphics.Color;
|
|
||||||
import android.net.Uri;
|
import android.net.Uri;
|
||||||
import android.os.AsyncTask;
|
import android.os.AsyncTask;
|
||||||
import android.view.Menu;
|
import android.view.Menu;
|
||||||
|
@ -401,8 +399,6 @@ public abstract class BaseConversationListFragment extends Fragment implements A
|
||||||
|
|
||||||
mode.setTitle("1");
|
mode.setTitle("1");
|
||||||
|
|
||||||
requireActivity().getWindow().setStatusBarColor(getResources().getColor(R.color.action_mode_status_bar));
|
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -445,10 +441,6 @@ public abstract class BaseConversationListFragment extends Fragment implements A
|
||||||
actionMode = null;
|
actionMode = null;
|
||||||
getListAdapter().initializeBatchMode(false);
|
getListAdapter().initializeBatchMode(false);
|
||||||
|
|
||||||
TypedArray color = requireActivity().getTheme().obtainStyledAttributes(new int[]{android.R.attr.statusBarColor});
|
|
||||||
requireActivity().getWindow().setStatusBarColor(color.getColor(0, Color.BLACK));
|
|
||||||
color.recycle();
|
|
||||||
|
|
||||||
Context context = getContext();
|
Context context = getContext();
|
||||||
if (context != null) {
|
if (context != null) {
|
||||||
fab.setImageDrawable(ContextCompat.getDrawable(context, R.drawable.ic_add_white_24dp));
|
fab.setImageDrawable(ContextCompat.getDrawable(context, R.drawable.ic_add_white_24dp));
|
||||||
|
|
|
@ -33,6 +33,7 @@ public class BlockedContactsActivity extends PassphraseRequiredActionBarActivity
|
||||||
setContentView(R.layout.activity_blocked_contacts);
|
setContentView(R.layout.activity_blocked_contacts);
|
||||||
getSupportActionBar().setDisplayHomeAsUpEnabled(true);
|
getSupportActionBar().setDisplayHomeAsUpEnabled(true);
|
||||||
getSupportActionBar().setTitle(R.string.pref_blocked_contacts);
|
getSupportActionBar().setTitle(R.string.pref_blocked_contacts);
|
||||||
|
getSupportActionBar().setElevation(0); // TODO: use custom toolbar instead
|
||||||
initFragment(R.id.fragment, new BlockedAndShareContactsFragment(), getIntent().getExtras());
|
initFragment(R.id.fragment, new BlockedAndShareContactsFragment(), getIntent().getExtras());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -23,8 +23,6 @@ import android.Manifest;
|
||||||
import android.annotation.SuppressLint;
|
import android.annotation.SuppressLint;
|
||||||
import android.app.Activity;
|
import android.app.Activity;
|
||||||
import android.content.Intent;
|
import android.content.Intent;
|
||||||
import android.content.res.TypedArray;
|
|
||||||
import android.graphics.Color;
|
|
||||||
import android.os.AsyncTask;
|
import android.os.AsyncTask;
|
||||||
import android.os.Bundle;
|
import android.os.Bundle;
|
||||||
import android.util.Log;
|
import android.util.Log;
|
||||||
|
@ -35,7 +33,6 @@ import android.view.MenuInflater;
|
||||||
import android.view.MenuItem;
|
import android.view.MenuItem;
|
||||||
import android.view.View;
|
import android.view.View;
|
||||||
import android.view.ViewGroup;
|
import android.view.ViewGroup;
|
||||||
import android.widget.Toast;
|
|
||||||
|
|
||||||
import androidx.annotation.NonNull;
|
import androidx.annotation.NonNull;
|
||||||
import androidx.appcompat.app.AlertDialog;
|
import androidx.appcompat.app.AlertDialog;
|
||||||
|
@ -136,7 +133,6 @@ public class ContactSelectionListFragment extends Fragment
|
||||||
public boolean onCreateActionMode(ActionMode actionMode, Menu menu) {
|
public boolean onCreateActionMode(ActionMode actionMode, Menu menu) {
|
||||||
MenuInflater inflater = getActivity().getMenuInflater();
|
MenuInflater inflater = getActivity().getMenuInflater();
|
||||||
inflater.inflate(R.menu.contact_list, menu);
|
inflater.inflate(R.menu.contact_list, menu);
|
||||||
getActivity().getWindow().setStatusBarColor(getResources().getColor(R.color.action_mode_status_bar));
|
|
||||||
setCorrectMenuVisibility(menu);
|
setCorrectMenuVisibility(menu);
|
||||||
actionMode.setTitle("1");
|
actionMode.setTitle("1");
|
||||||
return true;
|
return true;
|
||||||
|
@ -167,10 +163,6 @@ public class ContactSelectionListFragment extends Fragment
|
||||||
public void onDestroyActionMode(ActionMode actionMode) {
|
public void onDestroyActionMode(ActionMode actionMode) {
|
||||||
ContactSelectionListFragment.this.actionMode = null;
|
ContactSelectionListFragment.this.actionMode = null;
|
||||||
getContactSelectionListAdapter().resetActionModeSelection();
|
getContactSelectionListAdapter().resetActionModeSelection();
|
||||||
|
|
||||||
TypedArray color = getActivity().getTheme().obtainStyledAttributes(new int[]{android.R.attr.statusBarColor});
|
|
||||||
getActivity().getWindow().setStatusBarColor(color.getColor(0, Color.BLACK));
|
|
||||||
color.recycle();
|
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -920,6 +920,7 @@ public class ConversationActivity extends PassphraseRequiredActionBarActivity
|
||||||
supportActionBar.setCustomView(R.layout.conversation_title_view);
|
supportActionBar.setCustomView(R.layout.conversation_title_view);
|
||||||
supportActionBar.setDisplayShowCustomEnabled(true);
|
supportActionBar.setDisplayShowCustomEnabled(true);
|
||||||
supportActionBar.setDisplayShowTitleEnabled(false);
|
supportActionBar.setDisplayShowTitleEnabled(false);
|
||||||
|
supportActionBar.setElevation(0); // TODO: use custom toolbar instead
|
||||||
|
|
||||||
Toolbar parent = (Toolbar) supportActionBar.getCustomView().getParent();
|
Toolbar parent = (Toolbar) supportActionBar.getCustomView().getParent();
|
||||||
parent.setPadding(0,0,0,0);
|
parent.setPadding(0,0,0,0);
|
||||||
|
|
|
@ -32,7 +32,6 @@ import android.view.MenuInflater;
|
||||||
import android.view.MenuItem;
|
import android.view.MenuItem;
|
||||||
import android.view.View;
|
import android.view.View;
|
||||||
import android.view.ViewGroup;
|
import android.view.ViewGroup;
|
||||||
import android.view.Window;
|
|
||||||
import android.view.animation.Animation;
|
import android.view.animation.Animation;
|
||||||
import android.view.animation.AnimationUtils;
|
import android.view.animation.AnimationUtils;
|
||||||
import android.widget.TextView;
|
import android.widget.TextView;
|
||||||
|
@ -854,8 +853,6 @@ public class ConversationFragment extends MessageSelectorFragment
|
||||||
|
|
||||||
private class ActionModeCallback implements ActionMode.Callback {
|
private class ActionModeCallback implements ActionMode.Callback {
|
||||||
|
|
||||||
private int statusBarColor;
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean onCreateActionMode(ActionMode mode, Menu menu) {
|
public boolean onCreateActionMode(ActionMode mode, Menu menu) {
|
||||||
MenuInflater inflater = mode.getMenuInflater();
|
MenuInflater inflater = mode.getMenuInflater();
|
||||||
|
@ -863,10 +860,6 @@ public class ConversationFragment extends MessageSelectorFragment
|
||||||
|
|
||||||
mode.setTitle("1");
|
mode.setTitle("1");
|
||||||
|
|
||||||
Window window = getActivity().getWindow();
|
|
||||||
statusBarColor = window.getStatusBarColor();
|
|
||||||
window.setStatusBarColor(getResources().getColor(R.color.action_mode_status_bar));
|
|
||||||
|
|
||||||
Util.redMenuItem(menu, R.id.menu_context_delete_message);
|
Util.redMenuItem(menu, R.id.menu_context_delete_message);
|
||||||
setCorrectMenuVisibility(menu);
|
setCorrectMenuVisibility(menu);
|
||||||
ConversationAdaptiveActionsToolbar.adjustMenuActions(menu, 10, requireActivity().getWindow().getDecorView().getMeasuredWidth());
|
ConversationAdaptiveActionsToolbar.adjustMenuActions(menu, 10, requireActivity().getWindow().getDecorView().getMeasuredWidth());
|
||||||
|
@ -883,8 +876,6 @@ public class ConversationFragment extends MessageSelectorFragment
|
||||||
((ConversationAdapter)list.getAdapter()).clearSelection();
|
((ConversationAdapter)list.getAdapter()).clearSelection();
|
||||||
list.getAdapter().notifyDataSetChanged();
|
list.getAdapter().notifyDataSetChanged();
|
||||||
|
|
||||||
getActivity().getWindow().setStatusBarColor(statusBarColor);
|
|
||||||
|
|
||||||
actionMode = null;
|
actionMode = null;
|
||||||
hideAddReactionView();
|
hideAddReactionView();
|
||||||
}
|
}
|
||||||
|
|
|
@ -23,6 +23,7 @@ public class ConversationListArchiveActivity extends PassphraseRequiredActionBar
|
||||||
protected void onCreate(Bundle icicle, boolean ready) {
|
protected void onCreate(Bundle icicle, boolean ready) {
|
||||||
setContentView(R.layout.activity_conversation_list_archive);
|
setContentView(R.layout.activity_conversation_list_archive);
|
||||||
getSupportActionBar().setDisplayHomeAsUpEnabled(true);
|
getSupportActionBar().setDisplayHomeAsUpEnabled(true);
|
||||||
|
getSupportActionBar().setElevation(0); // TODO: use custom toolbar instead
|
||||||
if (isRelayingMessageContent(this)) {
|
if (isRelayingMessageContent(this)) {
|
||||||
getSupportActionBar().setTitle(isSharing(this) ? R.string.chat_share_with_title : R.string.forward_to);
|
getSupportActionBar().setTitle(isSharing(this) ? R.string.chat_share_with_title : R.string.forward_to);
|
||||||
getSupportActionBar().setSubtitle(R.string.chat_archived_label);
|
getSupportActionBar().setSubtitle(R.string.chat_archived_label);
|
||||||
|
|
|
@ -76,6 +76,7 @@ public class CreateProfileActivity extends BaseActionBarActivity {
|
||||||
getSupportActionBar().setTitle(R.string.pref_profile_info_headline);
|
getSupportActionBar().setTitle(R.string.pref_profile_info_headline);
|
||||||
getSupportActionBar().setDisplayHomeAsUpEnabled(!this.fromWelcome);
|
getSupportActionBar().setDisplayHomeAsUpEnabled(!this.fromWelcome);
|
||||||
getSupportActionBar().setHomeAsUpIndicator(R.drawable.ic_close_white_24dp);
|
getSupportActionBar().setHomeAsUpIndicator(R.drawable.ic_close_white_24dp);
|
||||||
|
getSupportActionBar().setElevation(0); // TODO: use custom toolbar instead
|
||||||
|
|
||||||
attachmentManager = new AttachmentManager(this, () -> {});
|
attachmentManager = new AttachmentManager(this, () -> {});
|
||||||
avatarChanged = false;
|
avatarChanged = false;
|
||||||
|
|
|
@ -80,6 +80,7 @@ public class GroupCreateActivity extends PassphraseRequiredActionBarActivity
|
||||||
unencrypted = getIntent().getBooleanExtra(UNENCRYPTED, false);
|
unencrypted = getIntent().getBooleanExtra(UNENCRYPTED, false);
|
||||||
Objects.requireNonNull(getSupportActionBar()).setDisplayHomeAsUpEnabled(true);
|
Objects.requireNonNull(getSupportActionBar()).setDisplayHomeAsUpEnabled(true);
|
||||||
getSupportActionBar().setHomeAsUpIndicator(R.drawable.ic_close_white_24dp);
|
getSupportActionBar().setHomeAsUpIndicator(R.drawable.ic_close_white_24dp);
|
||||||
|
getSupportActionBar().setElevation(0); // TODO: use custom toolbar instead
|
||||||
|
|
||||||
groupChatId = getIntent().getIntExtra(EDIT_GROUP_CHAT_ID, 0);
|
groupChatId = getIntent().getIntExtra(EDIT_GROUP_CHAT_ID, 0);
|
||||||
attachmentManager = new AttachmentManager(this, () -> {});
|
attachmentManager = new AttachmentManager(this, () -> {});
|
||||||
|
|
|
@ -98,6 +98,7 @@ public class InstantOnboardingActivity extends BaseActionBarActivity implements
|
||||||
|
|
||||||
Objects.requireNonNull(getSupportActionBar()).setTitle(R.string.onboarding_create_instant_account);
|
Objects.requireNonNull(getSupportActionBar()).setTitle(R.string.onboarding_create_instant_account);
|
||||||
getSupportActionBar().setDisplayHomeAsUpEnabled(true);
|
getSupportActionBar().setDisplayHomeAsUpEnabled(true);
|
||||||
|
getSupportActionBar().setElevation(0); // TODO: use custom toolbar instead
|
||||||
|
|
||||||
boolean fromWelcome = getIntent().getBooleanExtra(FROM_WELCOME, false);
|
boolean fromWelcome = getIntent().getBooleanExtra(FROM_WELCOME, false);
|
||||||
if (DcHelper.getContext(this).isConfigured() == 1) {
|
if (DcHelper.getContext(this).isConfigured() == 1) {
|
||||||
|
|
|
@ -36,6 +36,7 @@ public class LogViewActivity extends BaseActionBarActivity {
|
||||||
transaction.commit();
|
transaction.commit();
|
||||||
|
|
||||||
getSupportActionBar().setDisplayHomeAsUpEnabled(true);
|
getSupportActionBar().setDisplayHomeAsUpEnabled(true);
|
||||||
|
getSupportActionBar().setElevation(0); // TODO: use custom toolbar instead
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
|
@ -3,14 +3,12 @@ package org.thoughtcrime.securesms;
|
||||||
import android.app.Activity;
|
import android.app.Activity;
|
||||||
import android.content.Context;
|
import android.content.Context;
|
||||||
import android.content.Intent;
|
import android.content.Intent;
|
||||||
import android.content.res.Configuration;
|
|
||||||
import android.os.Bundle;
|
import android.os.Bundle;
|
||||||
import android.view.LayoutInflater;
|
import android.view.LayoutInflater;
|
||||||
import android.view.Menu;
|
import android.view.Menu;
|
||||||
import android.view.MenuItem;
|
import android.view.MenuItem;
|
||||||
import android.view.View;
|
import android.view.View;
|
||||||
import android.view.ViewGroup;
|
import android.view.ViewGroup;
|
||||||
import android.view.Window;
|
|
||||||
import android.widget.Toast;
|
import android.widget.Toast;
|
||||||
|
|
||||||
import androidx.annotation.NonNull;
|
import androidx.annotation.NonNull;
|
||||||
|
@ -249,8 +247,6 @@ public class ProfileFragment extends Fragment
|
||||||
|
|
||||||
private class ActionModeCallback implements ActionMode.Callback {
|
private class ActionModeCallback implements ActionMode.Callback {
|
||||||
|
|
||||||
private int originalStatusBarColor;
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean onCreateActionMode(ActionMode mode, Menu menu) {
|
public boolean onCreateActionMode(ActionMode mode, Menu menu) {
|
||||||
mode.getMenuInflater().inflate(R.menu.profile_context, menu);
|
mode.getMenuInflater().inflate(R.menu.profile_context, menu);
|
||||||
|
@ -263,9 +259,6 @@ public class ProfileFragment extends Fragment
|
||||||
menu.findItem(R.id.menu_select_all).setVisible(false);
|
menu.findItem(R.id.menu_select_all).setVisible(false);
|
||||||
mode.setTitle("1");
|
mode.setTitle("1");
|
||||||
|
|
||||||
Window window = requireActivity().getWindow();
|
|
||||||
originalStatusBarColor = window.getStatusBarColor();
|
|
||||||
window.setStatusBarColor(getResources().getColor(R.color.action_mode_status_bar));
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -306,7 +299,6 @@ public class ProfileFragment extends Fragment
|
||||||
public void onDestroyActionMode(ActionMode mode) {
|
public void onDestroyActionMode(ActionMode mode) {
|
||||||
actionMode = null;
|
actionMode = null;
|
||||||
adapter.clearSelection();
|
adapter.clearSelection();
|
||||||
requireActivity().getWindow().setStatusBarColor(originalStatusBarColor);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -135,6 +135,7 @@ public class RegistrationActivity extends BaseActionBarActivity implements DcEve
|
||||||
actionBar.setTitle(R.string.login_header);
|
actionBar.setTitle(R.string.login_header);
|
||||||
actionBar.setDisplayHomeAsUpEnabled(true);
|
actionBar.setDisplayHomeAsUpEnabled(true);
|
||||||
actionBar.setHomeAsUpIndicator(R.drawable.ic_close_white_24dp);
|
actionBar.setHomeAsUpIndicator(R.drawable.ic_close_white_24dp);
|
||||||
|
actionBar.setElevation(0); // TODO: use custom toolbar instead
|
||||||
}
|
}
|
||||||
|
|
||||||
emailInput.addTextChangedListener(new TextWatcher() {
|
emailInput.addTextChangedListener(new TextWatcher() {
|
||||||
|
|
|
@ -55,6 +55,7 @@ public class WebViewActivity extends PassphraseRequiredActionBarActivity
|
||||||
ActionBar actionBar = getSupportActionBar();
|
ActionBar actionBar = getSupportActionBar();
|
||||||
if (actionBar != null) {
|
if (actionBar != null) {
|
||||||
actionBar.setDisplayHomeAsUpEnabled(true);
|
actionBar.setDisplayHomeAsUpEnabled(true);
|
||||||
|
actionBar.setElevation(0); // TODO: use custom toolbar instead
|
||||||
}
|
}
|
||||||
|
|
||||||
webView = findViewById(R.id.webview);
|
webView = findViewById(R.id.webview);
|
||||||
|
|
|
@ -48,6 +48,7 @@ public class WebxdcStoreActivity extends PassphraseRequiredActionBarActivity {
|
||||||
if (actionBar != null) {
|
if (actionBar != null) {
|
||||||
actionBar.setDisplayHomeAsUpEnabled(true);
|
actionBar.setDisplayHomeAsUpEnabled(true);
|
||||||
actionBar.setTitle(R.string.webxdc_apps);
|
actionBar.setTitle(R.string.webxdc_apps);
|
||||||
|
actionBar.setElevation(0); // TODO: use custom toolbar instead
|
||||||
}
|
}
|
||||||
|
|
||||||
webView.setWebViewClient(new WebViewClient() {
|
webView.setWebViewClient(new WebViewClient() {
|
||||||
|
|
|
@ -107,6 +107,7 @@ public class WelcomeActivity extends BaseActionBarActivity implements DcEventCen
|
||||||
boolean canGoBack = AccountManager.getInstance().canRollbackAccountCreation(this);
|
boolean canGoBack = AccountManager.getInstance().canRollbackAccountCreation(this);
|
||||||
supportActionBar.setDisplayHomeAsUpEnabled(canGoBack);
|
supportActionBar.setDisplayHomeAsUpEnabled(canGoBack);
|
||||||
getSupportActionBar().setTitle(canGoBack? R.string.add_account : R.string.welcome_desktop);
|
getSupportActionBar().setTitle(canGoBack? R.string.add_account : R.string.welcome_desktop);
|
||||||
|
getSupportActionBar().setElevation(0); // TODO: use custom toolbar instead
|
||||||
}
|
}
|
||||||
|
|
||||||
private void registerForEvents() {
|
private void registerForEvents() {
|
||||||
|
|
|
@ -42,6 +42,7 @@ public class NewContactActivity extends PassphraseRequiredActionBarActivity
|
||||||
actionBar.setTitle(R.string.menu_new_classic_contact);
|
actionBar.setTitle(R.string.menu_new_classic_contact);
|
||||||
actionBar.setDisplayHomeAsUpEnabled(true);
|
actionBar.setDisplayHomeAsUpEnabled(true);
|
||||||
actionBar.setHomeAsUpIndicator(R.drawable.ic_close_white_24dp);
|
actionBar.setHomeAsUpIndicator(R.drawable.ic_close_white_24dp);
|
||||||
|
actionBar.setElevation(0); // TODO: use custom toolbar instead
|
||||||
}
|
}
|
||||||
|
|
||||||
nameInput = ViewUtil.findById(this, R.id.name_text);
|
nameInput = ViewUtil.findById(this, R.id.name_text);
|
||||||
|
|
|
@ -71,6 +71,7 @@ public class ChatBackgroundActivity extends PassphraseRequiredActionBarActivity
|
||||||
actionBar.setTitle(R.string.pref_background);
|
actionBar.setTitle(R.string.pref_background);
|
||||||
actionBar.setDisplayHomeAsUpEnabled(true);
|
actionBar.setDisplayHomeAsUpEnabled(true);
|
||||||
actionBar.setHomeAsUpIndicator(R.drawable.ic_close_white_24dp);
|
actionBar.setHomeAsUpIndicator(R.drawable.ic_close_white_24dp);
|
||||||
|
actionBar.setElevation(0); // TODO: use custom toolbar instead
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -50,6 +50,7 @@ public class ProxySettingsActivity extends BaseActionBarActivity
|
||||||
if (actionBar != null) {
|
if (actionBar != null) {
|
||||||
actionBar.setTitle(R.string.proxy_settings);
|
actionBar.setTitle(R.string.proxy_settings);
|
||||||
actionBar.setDisplayHomeAsUpEnabled(true);
|
actionBar.setDisplayHomeAsUpEnabled(true);
|
||||||
|
actionBar.setElevation(0); // TODO: use custom toolbar instead
|
||||||
}
|
}
|
||||||
|
|
||||||
adapter = new ProxyListAdapter(this);
|
adapter = new ProxyListAdapter(this);
|
||||||
|
|
|
@ -85,6 +85,7 @@ public class BackupTransferActivity extends BaseActionBarActivity {
|
||||||
supportActionBar.setDisplayHomeAsUpEnabled(true);
|
supportActionBar.setDisplayHomeAsUpEnabled(true);
|
||||||
supportActionBar.setHomeAsUpIndicator(R.drawable.ic_close_white_24dp);
|
supportActionBar.setHomeAsUpIndicator(R.drawable.ic_close_white_24dp);
|
||||||
supportActionBar.setTitle(title);
|
supportActionBar.setTitle(title);
|
||||||
|
supportActionBar.setElevation(0); // TODO: use custom toolbar instead
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
|
@ -42,6 +42,7 @@ public class RegistrationQrActivity extends BaseActionBarActivity {
|
||||||
getSupportActionBar().setTitle(R.string.scan_invitation_code);
|
getSupportActionBar().setTitle(R.string.scan_invitation_code);
|
||||||
}
|
}
|
||||||
getSupportActionBar().setDisplayHomeAsUpEnabled(true);
|
getSupportActionBar().setDisplayHomeAsUpEnabled(true);
|
||||||
|
getSupportActionBar().setElevation(0); // TODO: use custom toolbar instead
|
||||||
|
|
||||||
barcodeScannerView = findViewById(R.id.zxing_barcode_scanner);
|
barcodeScannerView = findViewById(R.id.zxing_barcode_scanner);
|
||||||
barcodeScannerView.setStatusText(getString(R.string.qrscan_hint) + "\n ");
|
barcodeScannerView.setStatusText(getString(R.string.qrscan_hint) + "\n ");
|
||||||
|
|
|
@ -1,6 +1,15 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<FrameLayout
|
<RelativeLayout
|
||||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
android:background="?attr/colorPrimary"
|
||||||
|
android:fitsSystemWindows="true"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="match_parent"
|
android:layout_height="match_parent">
|
||||||
android:id="@+id/fragment" />
|
|
||||||
|
<FrameLayout
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="match_parent"
|
||||||
|
android:background="?android:attr/windowBackground"
|
||||||
|
android:id="@+id/fragment" />
|
||||||
|
|
||||||
|
</RelativeLayout>
|
||||||
|
|
|
@ -1,6 +1,15 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<FrameLayout
|
<RelativeLayout
|
||||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
android:background="?attr/colorPrimary"
|
||||||
|
android:fitsSystemWindows="true"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="match_parent"
|
android:layout_height="match_parent">
|
||||||
android:id="@+id/fragment" />
|
|
||||||
|
<FrameLayout
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="match_parent"
|
||||||
|
android:background="?android:attr/windowBackground"
|
||||||
|
android:id="@+id/fragment" />
|
||||||
|
|
||||||
|
</RelativeLayout>
|
||||||
|
|
|
@ -1,6 +1,15 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<FrameLayout
|
<RelativeLayout
|
||||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
android:background="?attr/colorPrimary"
|
||||||
|
android:fitsSystemWindows="true"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="match_parent"
|
android:layout_height="match_parent">
|
||||||
android:id="@+id/fragment" />
|
|
||||||
|
<FrameLayout
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="match_parent"
|
||||||
|
android:background="?android:attr/windowBackground"
|
||||||
|
android:id="@+id/fragment" />
|
||||||
|
|
||||||
|
</RelativeLayout>
|
||||||
|
|
|
@ -3,11 +3,14 @@
|
||||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
android:layout_height="match_parent"
|
android:layout_height="match_parent"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
|
android:fitsSystemWindows="true"
|
||||||
|
android:background="?attr/colorPrimary"
|
||||||
xmlns:app="http://schemas.android.com/apk/res-auto">
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
||||||
|
|
||||||
<com.google.android.material.appbar.AppBarLayout
|
<com.google.android.material.appbar.AppBarLayout
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content">
|
android:layout_height="wrap_content"
|
||||||
|
app:elevation="0dp">
|
||||||
|
|
||||||
<androidx.appcompat.widget.Toolbar
|
<androidx.appcompat.widget.Toolbar
|
||||||
android:id="@+id/toolbar"
|
android:id="@+id/toolbar"
|
||||||
|
|
|
@ -1,11 +1,17 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
<RelativeLayout
|
||||||
xmlns:tools="http://schemas.android.com/tools"
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
android:fitsSystemWindows="true"
|
||||||
|
android:background="?attr/colorPrimary"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="match_parent">
|
||||||
|
|
||||||
|
<LinearLayout
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="match_parent"
|
android:layout_height="match_parent"
|
||||||
|
android:background="?android:attr/windowBackground"
|
||||||
android:orientation="vertical"
|
android:orientation="vertical"
|
||||||
android:gravity="center_horizontal"
|
android:gravity="center_horizontal">
|
||||||
tools:context=".WelcomeActivity">
|
|
||||||
|
|
||||||
<LinearLayout
|
<LinearLayout
|
||||||
android:id="@+id/top_text"
|
android:id="@+id/top_text"
|
||||||
|
@ -87,3 +93,5 @@
|
||||||
android:layout_height="0dp"/>
|
android:layout_height="0dp"/>
|
||||||
|
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
|
|
||||||
|
</RelativeLayout>
|
||||||
|
|
|
@ -1,11 +1,17 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
<RelativeLayout
|
||||||
xmlns:tools="http://schemas.android.com/tools"
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
android:background="?attr/colorPrimary"
|
||||||
|
android:fitsSystemWindows="true"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="match_parent">
|
||||||
|
|
||||||
|
<LinearLayout
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="match_parent"
|
android:layout_height="match_parent"
|
||||||
|
android:background="?android:attr/windowBackground"
|
||||||
android:orientation="vertical"
|
android:orientation="vertical"
|
||||||
android:gravity="center_horizontal"
|
android:gravity="center_horizontal">
|
||||||
tools:context=".WelcomeActivity">
|
|
||||||
|
|
||||||
<androidx.legacy.widget.Space
|
<androidx.legacy.widget.Space
|
||||||
android:layout_weight="2"
|
android:layout_weight="2"
|
||||||
|
@ -34,3 +40,5 @@
|
||||||
android:layout_height="0dp"/>
|
android:layout_height="0dp"/>
|
||||||
|
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
|
|
||||||
|
</RelativeLayout>
|
||||||
|
|
|
@ -2,6 +2,8 @@
|
||||||
<FrameLayout
|
<FrameLayout
|
||||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
android:id="@+id/layout_container"
|
android:id="@+id/layout_container"
|
||||||
|
android:fitsSystemWindows="true"
|
||||||
|
android:background="?attr/colorPrimary"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="match_parent">
|
android:layout_height="match_parent">
|
||||||
|
|
||||||
|
|
|
@ -3,11 +3,14 @@
|
||||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
android:layout_height="match_parent"
|
android:layout_height="match_parent"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
|
android:fitsSystemWindows="true"
|
||||||
|
android:background="?attr/colorPrimary"
|
||||||
xmlns:app="http://schemas.android.com/apk/res-auto">
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
||||||
|
|
||||||
<com.google.android.material.appbar.AppBarLayout
|
<com.google.android.material.appbar.AppBarLayout
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content">
|
android:layout_height="wrap_content"
|
||||||
|
app:elevation="0dp">
|
||||||
|
|
||||||
<androidx.appcompat.widget.Toolbar
|
<androidx.appcompat.widget.Toolbar
|
||||||
android:id="@+id/toolbar"
|
android:id="@+id/toolbar"
|
||||||
|
|
|
@ -1,5 +1,15 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
<RelativeLayout
|
||||||
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
android:background="?attr/colorPrimary"
|
||||||
|
android:fitsSystemWindows="true"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="match_parent"
|
android:layout_height="match_parent">
|
||||||
android:id="@+id/backup_provider_fragment" />
|
|
||||||
|
<FrameLayout
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="match_parent"
|
||||||
|
android:background="?android:attr/windowBackground"
|
||||||
|
android:id="@+id/backup_provider_fragment" />
|
||||||
|
|
||||||
|
</RelativeLayout>
|
||||||
|
|
|
@ -2,6 +2,8 @@
|
||||||
<LinearLayout android:layout_gravity="center"
|
<LinearLayout android:layout_gravity="center"
|
||||||
android:layout_height="fill_parent"
|
android:layout_height="fill_parent"
|
||||||
android:layout_width="fill_parent"
|
android:layout_width="fill_parent"
|
||||||
|
android:fitsSystemWindows="true"
|
||||||
|
android:background="?attr/colorPrimary"
|
||||||
android:orientation="vertical"
|
android:orientation="vertical"
|
||||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
xmlns:app="http://schemas.android.com/apk/res-auto">
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
||||||
|
@ -16,9 +18,16 @@
|
||||||
android:theme="?attr/actionBarStyle"
|
android:theme="?attr/actionBarStyle"
|
||||||
app:contentInsetStartWithNavigation="0dp"/>
|
app:contentInsetStartWithNavigation="0dp"/>
|
||||||
|
|
||||||
<fragment android:id="@+id/contact_selection_list_fragment"
|
<FrameLayout
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="match_parent"
|
||||||
|
android:background="?android:attr/windowBackground">
|
||||||
|
|
||||||
|
<fragment android:id="@+id/contact_selection_list_fragment"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="match_parent"
|
android:layout_height="match_parent"
|
||||||
android:name="org.thoughtcrime.securesms.ContactSelectionListFragment" />
|
android:name="org.thoughtcrime.securesms.ContactSelectionListFragment" />
|
||||||
|
|
||||||
|
</FrameLayout>
|
||||||
|
|
||||||
</LinearLayout>
|
</LinearLayout>
|
|
@ -1,6 +1,9 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
<RelativeLayout
|
||||||
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
xmlns:tools="http://schemas.android.com/tools"
|
xmlns:tools="http://schemas.android.com/tools"
|
||||||
|
android:fitsSystemWindows="true"
|
||||||
|
android:background="?attr/colorPrimary"
|
||||||
android:layout_height="match_parent" android:layout_width="match_parent">
|
android:layout_height="match_parent" android:layout_width="match_parent">
|
||||||
|
|
||||||
<org.thoughtcrime.securesms.components.ScaleStableImageView
|
<org.thoughtcrime.securesms.components.ScaleStableImageView
|
||||||
|
@ -19,7 +22,6 @@
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="match_parent"
|
android:layout_height="match_parent"
|
||||||
android:orientation="vertical"
|
android:orientation="vertical"
|
||||||
android:paddingTop="?attr/actionBarSize"
|
|
||||||
android:gravity="bottom"
|
android:gravity="bottom"
|
||||||
android:clipToPadding="false"
|
android:clipToPadding="false"
|
||||||
android:clipChildren="false">
|
android:clipChildren="false">
|
||||||
|
|
|
@ -4,6 +4,8 @@
|
||||||
xmlns:tools="http://schemas.android.com/tools"
|
xmlns:tools="http://schemas.android.com/tools"
|
||||||
android:id="@id/container"
|
android:id="@id/container"
|
||||||
android:orientation="vertical"
|
android:orientation="vertical"
|
||||||
|
android:background="?attr/colorPrimary"
|
||||||
|
android:fitsSystemWindows="true"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="match_parent">
|
android:layout_height="match_parent">
|
||||||
|
|
||||||
|
@ -93,7 +95,9 @@
|
||||||
<FrameLayout android:id="@+id/fragment_container"
|
<FrameLayout android:id="@+id/fragment_container"
|
||||||
android:layout_below="@id/toolbar"
|
android:layout_below="@id/toolbar"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="match_parent"/>
|
android:layout_height="match_parent"
|
||||||
|
android:background="?android:attr/windowBackground"
|
||||||
|
/>
|
||||||
|
|
||||||
<org.thoughtcrime.securesms.components.SearchToolbar
|
<org.thoughtcrime.securesms.components.SearchToolbar
|
||||||
android:id="@+id/search_toolbar"
|
android:id="@+id/search_toolbar"
|
||||||
|
|
|
@ -1,9 +1,16 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<RelativeLayout
|
||||||
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
android:background="?attr/colorPrimary"
|
||||||
|
android:fitsSystemWindows="true"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="match_parent">
|
||||||
|
|
||||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
<LinearLayout
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="match_parent"
|
android:layout_height="match_parent"
|
||||||
android:orientation="vertical">
|
android:background="?android:attr/windowBackground"
|
||||||
|
android:orientation="vertical">
|
||||||
|
|
||||||
<LinearLayout
|
<LinearLayout
|
||||||
android:id="@+id/group_image_holder"
|
android:id="@+id/group_image_holder"
|
||||||
|
@ -54,3 +61,5 @@
|
||||||
android:divider="@null" />
|
android:divider="@null" />
|
||||||
|
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
|
|
||||||
|
</RelativeLayout>
|
||||||
|
|
|
@ -1,7 +1,15 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<FrameLayout android:layout_width="match_parent"
|
<RelativeLayout
|
||||||
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
android:background="?attr/colorPrimary"
|
||||||
|
android:fitsSystemWindows="true"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="match_parent">
|
||||||
|
|
||||||
|
<FrameLayout
|
||||||
|
android:layout_width="match_parent"
|
||||||
android:layout_height="match_parent"
|
android:layout_height="match_parent"
|
||||||
xmlns:android="http://schemas.android.com/apk/res/android">
|
android:background="?android:attr/windowBackground">
|
||||||
|
|
||||||
<LinearLayout
|
<LinearLayout
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
|
@ -85,3 +93,5 @@
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
|
|
||||||
</FrameLayout>
|
</FrameLayout>
|
||||||
|
|
||||||
|
</RelativeLayout>
|
||||||
|
|
|
@ -1,9 +1,16 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<RelativeLayout
|
||||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
android:id="@+id/fragment_container"
|
android:background="?attr/colorPrimary"
|
||||||
android:orientation="vertical"
|
android:fitsSystemWindows="true"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="match_parent">
|
android:layout_height="match_parent">
|
||||||
|
|
||||||
</LinearLayout>
|
<LinearLayout
|
||||||
|
android:id="@+id/fragment_container"
|
||||||
|
android:orientation="vertical"
|
||||||
|
android:background="?android:attr/windowBackground"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="match_parent"/>
|
||||||
|
|
||||||
|
</RelativeLayout>
|
||||||
|
|
|
@ -4,14 +4,17 @@
|
||||||
xmlns:tools="http://schemas.android.com/tools"
|
xmlns:tools="http://schemas.android.com/tools"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="match_parent"
|
android:layout_height="match_parent"
|
||||||
|
android:fitsSystemWindows="true"
|
||||||
|
android:background="?attr/colorPrimary"
|
||||||
android:fillViewport="true"
|
android:fillViewport="true"
|
||||||
tools:context=".contacts.NewContactActivity">
|
tools:context=".contacts.NewContactActivity">
|
||||||
|
|
||||||
<androidx.constraintlayout.widget.ConstraintLayout
|
<androidx.constraintlayout.widget.ConstraintLayout
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginTop="16dp"
|
android:paddingTop="16dp"
|
||||||
android:layout_marginBottom="16dp"
|
android:paddingBottom="16dp"
|
||||||
|
android:background="?android:attr/windowBackground"
|
||||||
android:animateLayoutChanges="true">
|
android:animateLayoutChanges="true">
|
||||||
|
|
||||||
<androidx.constraintlayout.widget.Guideline
|
<androidx.constraintlayout.widget.Guideline
|
||||||
|
|
|
@ -3,11 +3,14 @@
|
||||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
android:layout_height="match_parent"
|
android:layout_height="match_parent"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
|
android:fitsSystemWindows="true"
|
||||||
|
android:background="?attr/colorPrimary"
|
||||||
xmlns:app="http://schemas.android.com/apk/res-auto">
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
||||||
|
|
||||||
<com.google.android.material.appbar.AppBarLayout
|
<com.google.android.material.appbar.AppBarLayout
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content">
|
android:layout_height="wrap_content"
|
||||||
|
app:elevation="0dp">
|
||||||
|
|
||||||
<androidx.appcompat.widget.Toolbar
|
<androidx.appcompat.widget.Toolbar
|
||||||
android:id="@+id/toolbar"
|
android:id="@+id/toolbar"
|
||||||
|
@ -23,6 +26,7 @@
|
||||||
|
|
||||||
<FrameLayout
|
<FrameLayout
|
||||||
android:id="@+id/fragment_container"
|
android:id="@+id/fragment_container"
|
||||||
|
android:background="?android:attr/windowBackground"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="match_parent"
|
android:layout_height="match_parent"
|
||||||
app:layout_behavior="@string/appbar_scrolling_view_behavior"/>
|
app:layout_behavior="@string/appbar_scrolling_view_behavior"/>
|
||||||
|
|
|
@ -2,14 +2,17 @@
|
||||||
|
|
||||||
<FrameLayout
|
<FrameLayout
|
||||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
android:fitsSystemWindows="true"
|
||||||
|
android:background="?attr/colorPrimary"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="match_parent">
|
android:layout_height="match_parent">
|
||||||
|
|
||||||
<org.thoughtcrime.securesms.components.InputAwareLayout
|
<org.thoughtcrime.securesms.components.InputAwareLayout
|
||||||
android:id="@+id/container"
|
android:id="@+id/container"
|
||||||
|
android:background="?android:attr/windowBackground"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="match_parent"
|
android:layout_height="match_parent"
|
||||||
android:layout_marginTop="20dp"
|
android:paddingTop="20dp"
|
||||||
android:orientation="vertical">
|
android:orientation="vertical">
|
||||||
|
|
||||||
<TextView
|
<TextView
|
||||||
|
|
|
@ -1,9 +1,16 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<LinearLayout
|
<RelativeLayout
|
||||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
xmlns:tools="http://schemas.android.com/tools"
|
xmlns:tools="http://schemas.android.com/tools"
|
||||||
|
android:background="?attr/colorPrimary"
|
||||||
|
android:fitsSystemWindows="true"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="match_parent">
|
||||||
|
|
||||||
|
<LinearLayout
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="match_parent"
|
||||||
|
android:background="?android:attr/windowBackground"
|
||||||
android:orientation="vertical"
|
android:orientation="vertical"
|
||||||
tools:context=".proxy.ProxySettingsActivity">
|
tools:context=".proxy.ProxySettingsActivity">
|
||||||
|
|
||||||
|
@ -21,3 +28,5 @@
|
||||||
android:layout_height="wrap_content" />
|
android:layout_height="wrap_content" />
|
||||||
|
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
|
|
||||||
|
</RelativeLayout>
|
||||||
|
|
|
@ -1,10 +1,18 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
<RelativeLayout
|
||||||
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
xmlns:app="http://schemas.android.com/apk/res-auto"
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||||
xmlns:tools="http://schemas.android.com/tools"
|
xmlns:tools="http://schemas.android.com/tools"
|
||||||
|
android:fitsSystemWindows="true"
|
||||||
|
android:background="?attr/colorPrimary"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="match_parent">
|
||||||
|
|
||||||
|
<ScrollView
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="match_parent"
|
android:layout_height="match_parent"
|
||||||
android:fillViewport="true"
|
android:fillViewport="true"
|
||||||
|
android:background="?android:attr/windowBackground"
|
||||||
tools:context=".RegistrationActivity">
|
tools:context=".RegistrationActivity">
|
||||||
|
|
||||||
<androidx.constraintlayout.widget.ConstraintLayout
|
<androidx.constraintlayout.widget.ConstraintLayout
|
||||||
|
@ -420,3 +428,5 @@
|
||||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||||
|
|
||||||
</ScrollView>
|
</ScrollView>
|
||||||
|
|
||||||
|
</RelativeLayout>
|
||||||
|
|
|
@ -3,6 +3,7 @@
|
||||||
xmlns:app="http://schemas.android.com/apk/res-auto"
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="match_parent"
|
android:layout_height="match_parent"
|
||||||
|
android:fitsSystemWindows="true"
|
||||||
android:orientation="vertical">
|
android:orientation="vertical">
|
||||||
|
|
||||||
<com.google.android.material.tabs.TabLayout
|
<com.google.android.material.tabs.TabLayout
|
||||||
|
|
|
@ -1,10 +1,16 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<RelativeLayout
|
||||||
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
android:background="?attr/colorPrimary"
|
||||||
|
android:fitsSystemWindows="true"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="match_parent">
|
||||||
|
|
||||||
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
<RelativeLayout
|
||||||
xmlns:wheel="http://schemas.android.com/apk/res-auto"
|
android:orientation="vertical"
|
||||||
android:orientation="vertical"
|
android:background="?android:attr/windowBackground"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="match_parent">
|
android:layout_height="match_parent">
|
||||||
|
|
||||||
<androidx.appcompat.widget.Toolbar
|
<androidx.appcompat.widget.Toolbar
|
||||||
android:id="@+id/toolbar"
|
android:id="@+id/toolbar"
|
||||||
|
@ -40,3 +46,5 @@
|
||||||
android:textSize="20sp"
|
android:textSize="20sp"
|
||||||
android:text="@string/one_moment" />
|
android:text="@string/one_moment" />
|
||||||
</RelativeLayout>
|
</RelativeLayout>
|
||||||
|
|
||||||
|
</RelativeLayout>
|
||||||
|
|
|
@ -3,6 +3,8 @@
|
||||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="match_parent"
|
android:layout_height="match_parent"
|
||||||
|
android:fitsSystemWindows="true"
|
||||||
|
android:background="?attr/colorPrimary"
|
||||||
android:orientation="vertical">
|
android:orientation="vertical">
|
||||||
|
|
||||||
<WebView android:id="@+id/webview"
|
<WebView android:id="@+id/webview"
|
||||||
|
|
|
@ -1,10 +1,18 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
<RelativeLayout
|
||||||
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
xmlns:tools="http://schemas.android.com/tools"
|
xmlns:tools="http://schemas.android.com/tools"
|
||||||
|
android:background="?attr/colorPrimary"
|
||||||
|
android:fitsSystemWindows="true"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="match_parent">
|
||||||
|
|
||||||
|
<LinearLayout
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="match_parent"
|
android:layout_height="match_parent"
|
||||||
android:orientation="vertical"
|
android:orientation="vertical"
|
||||||
android:gravity="center_horizontal"
|
android:gravity="center_horizontal"
|
||||||
|
android:background="?android:attr/windowBackground"
|
||||||
tools:context=".WelcomeActivity">
|
tools:context=".WelcomeActivity">
|
||||||
|
|
||||||
<androidx.legacy.widget.Space
|
<androidx.legacy.widget.Space
|
||||||
|
@ -71,3 +79,4 @@
|
||||||
|
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
|
|
||||||
|
</RelativeLayout>
|
||||||
|
|
|
@ -37,7 +37,7 @@
|
||||||
<item name="theme_type">light</item>
|
<item name="theme_type">light</item>
|
||||||
<item name="actionBarStyle">@style/TextSecure.LightActionBar</item>
|
<item name="actionBarStyle">@style/TextSecure.LightActionBar</item>
|
||||||
<item name="actionBarTabBarStyle">@style/TextSecure.LightActionBar.TabBar</item>
|
<item name="actionBarTabBarStyle">@style/TextSecure.LightActionBar.TabBar</item>
|
||||||
<item name="actionModeBackground">@color/action_mode_status_bar</item>
|
<item name="actionModeBackground">@color/delta_primary</item>
|
||||||
<item name="colorPrimary">@color/delta_primary</item>
|
<item name="colorPrimary">@color/delta_primary</item>
|
||||||
<item name="colorPrimaryDark">@color/delta_primary</item>
|
<item name="colorPrimaryDark">@color/delta_primary</item>
|
||||||
|
|
||||||
|
@ -152,7 +152,7 @@
|
||||||
<item name="colorPrimary">@color/gray95</item>
|
<item name="colorPrimary">@color/gray95</item>
|
||||||
<item name="colorPrimaryDark">@color/gray95</item>
|
<item name="colorPrimaryDark">@color/gray95</item>
|
||||||
<item name="actionBarPopupTheme">@style/ThemeOverlay.AppCompat.Dark</item>
|
<item name="actionBarPopupTheme">@style/ThemeOverlay.AppCompat.Dark</item>
|
||||||
<item name="actionModeBackground">@color/action_mode_status_bar</item>
|
<item name="actionModeBackground">@color/gray95</item>
|
||||||
<item name="android:textColor">@color/text_color_dark_theme</item>
|
<item name="android:textColor">@color/text_color_dark_theme</item>
|
||||||
<item name="android:textColorSecondary">@color/text_color_secondary_dark_theme</item>
|
<item name="android:textColorSecondary">@color/text_color_secondary_dark_theme</item>
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue