mirror of
https://github.com/oxen-io/session-android.git
synced 2023-12-14 02:53:01 +01:00
110 lines
3.6 KiB
Java
110 lines
3.6 KiB
Java
/*
|
|
* Copyright (C) 2015 Open Whisper Systems
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
package org.thoughtcrime.securesms;
|
|
|
|
import android.os.Bundle;
|
|
import android.support.v4.widget.SwipeRefreshLayout;
|
|
|
|
import org.thoughtcrime.securesms.components.ContactFilterToolbar;
|
|
import org.thoughtcrime.securesms.loki.fragments.ContactSelectionListFragment;
|
|
import org.thoughtcrime.securesms.loki.fragments.ContactSelectionListLoader.DisplayMode;
|
|
import org.thoughtcrime.securesms.util.DynamicLanguage;
|
|
import org.thoughtcrime.securesms.util.DynamicNoActionBarTheme;
|
|
import org.thoughtcrime.securesms.util.DynamicTheme;
|
|
import org.thoughtcrime.securesms.util.ViewUtil;
|
|
|
|
import network.loki.messenger.R;
|
|
|
|
/**
|
|
* Base activity container for selecting a list of contacts.
|
|
*
|
|
* @author Moxie Marlinspike
|
|
*
|
|
*/
|
|
public abstract class ContactSelectionActivity extends PassphraseRequiredActionBarActivity
|
|
implements SwipeRefreshLayout.OnRefreshListener,
|
|
ContactSelectionListFragment.OnContactSelectedListener
|
|
{
|
|
private static final String TAG = ContactSelectionActivity.class.getSimpleName();
|
|
|
|
private final DynamicTheme dynamicTheme = new DynamicNoActionBarTheme();
|
|
private final DynamicLanguage dynamicLanguage = new DynamicLanguage();
|
|
|
|
protected ContactSelectionListFragment contactsFragment;
|
|
|
|
private ContactFilterToolbar toolbar;
|
|
|
|
@Override
|
|
protected void onPreCreate() {
|
|
dynamicTheme.onCreate(this);
|
|
dynamicLanguage.onCreate(this);
|
|
}
|
|
|
|
@Override
|
|
protected void onCreate(Bundle icicle, boolean ready) {
|
|
if (!getIntent().hasExtra(ContactSelectionListFragment.DISPLAY_MODE)) {
|
|
getIntent().putExtra(ContactSelectionListFragment.DISPLAY_MODE, DisplayMode.FLAG_ALL);
|
|
}
|
|
|
|
setContentView(R.layout.contact_selection_activity);
|
|
|
|
initializeToolbar();
|
|
initializeResources();
|
|
initializeSearch();
|
|
}
|
|
|
|
@Override
|
|
public void onResume() {
|
|
super.onResume();
|
|
dynamicTheme.onResume(this);
|
|
dynamicLanguage.onResume(this);
|
|
}
|
|
|
|
protected ContactFilterToolbar getToolbar() {
|
|
return toolbar;
|
|
}
|
|
|
|
private void initializeToolbar() {
|
|
this.toolbar = ViewUtil.findById(this, R.id.toolbar);
|
|
setSupportActionBar(toolbar);
|
|
|
|
assert getSupportActionBar() != null;
|
|
getSupportActionBar().setDisplayHomeAsUpEnabled(false);
|
|
getSupportActionBar().setDisplayShowTitleEnabled(false);
|
|
getSupportActionBar().setIcon(null);
|
|
getSupportActionBar().setLogo(null);
|
|
}
|
|
|
|
private void initializeResources() {
|
|
contactsFragment = (ContactSelectionListFragment) getSupportFragmentManager().findFragmentById(R.id.contact_selection_list_fragment);
|
|
contactsFragment.setOnContactSelectedListener(this);
|
|
contactsFragment.setOnRefreshListener(this);
|
|
}
|
|
|
|
private void initializeSearch() {
|
|
toolbar.setOnFilterChangedListener(filter -> contactsFragment.setQueryFilter(filter));
|
|
}
|
|
|
|
@Override
|
|
public void onRefresh() { }
|
|
|
|
@Override
|
|
public void onContactSelected(String number) {}
|
|
|
|
@Override
|
|
public void onContactDeselected(String number) {}
|
|
}
|