/** * 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 . */ package org.thoughtcrime.securesms; import android.os.AsyncTask; import android.os.Bundle; import android.support.annotation.NonNull; import android.support.v4.widget.SwipeRefreshLayout; import android.support.v7.widget.Toolbar; import android.text.Editable; import android.text.InputType; import android.text.TextWatcher; import android.util.Log; import android.view.View; import android.widget.EditText; import android.widget.ImageView; import org.thoughtcrime.securesms.components.AnimatingToggle; import org.thoughtcrime.securesms.crypto.MasterSecret; import org.thoughtcrime.securesms.util.DirectoryHelper; import org.thoughtcrime.securesms.util.DynamicLanguage; import org.thoughtcrime.securesms.util.DynamicNoActionBarTheme; import org.thoughtcrime.securesms.util.DynamicTheme; import java.io.IOException; /** * 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(); public final static String PUSH_ONLY_EXTRA = "push_only"; private final DynamicTheme dynamicTheme = new DynamicNoActionBarTheme(); private final DynamicLanguage dynamicLanguage = new DynamicLanguage(); protected ContactSelectionListFragment contactsFragment; private Toolbar toolbar; private EditText searchText; private AnimatingToggle toggle; protected ImageView action; private ImageView keyboardToggle; private ImageView dialpadToggle; private ImageView clearToggle; @Override protected void onPreCreate() { dynamicTheme.onCreate(this); dynamicLanguage.onCreate(this); } @Override protected void onCreate(Bundle icicle, @NonNull MasterSecret masterSecret) { setContentView(R.layout.contact_selection_activity); initializeToolbar(); initializeResources(); initializeSearch(); } @Override public void onResume() { super.onResume(); dynamicTheme.onResume(this); dynamicLanguage.onResume(this); } private void initializeToolbar() { this.toolbar = (Toolbar) findViewById(R.id.toolbar); setSupportActionBar(toolbar); getSupportActionBar().setDisplayHomeAsUpEnabled(false); getSupportActionBar().setDisplayShowTitleEnabled(false); } private void initializeResources() { this.action = (ImageView) findViewById(R.id.action_icon); this.searchText = (EditText) findViewById(R.id.search_view); this.toggle = (AnimatingToggle) findViewById(R.id.button_toggle); this.keyboardToggle = (ImageView) findViewById(R.id.search_keyboard); this.dialpadToggle = (ImageView) findViewById(R.id.search_dialpad); this.clearToggle = (ImageView) findViewById(R.id.search_clear); contactsFragment = (ContactSelectionListFragment) getSupportFragmentManager().findFragmentById(R.id.contact_selection_list_fragment); contactsFragment.setOnContactSelectedListener(this); contactsFragment.setOnRefreshListener(this); this.keyboardToggle.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { searchText.setInputType(InputType.TYPE_CLASS_TEXT | InputType.TYPE_TEXT_VARIATION_PERSON_NAME); toggle.display(dialpadToggle); } }); this.dialpadToggle.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { searchText.setInputType(InputType.TYPE_CLASS_PHONE); toggle.display(keyboardToggle); } }); this.clearToggle.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { searchText.setText(""); if (SearchUtil.isTextInput(searchText)) toggle.display(dialpadToggle); else toggle.display(keyboardToggle); } }); } private void initializeSearch() { this.searchText.addTextChangedListener(new TextWatcher() { @Override public void beforeTextChanged(CharSequence s, int start, int count, int after) { } @Override public void onTextChanged(CharSequence s, int start, int before, int count) { } @Override public void afterTextChanged(Editable s) { if (!SearchUtil.isEmpty(searchText)) toggle.display(clearToggle); else if (SearchUtil.isTextInput(searchText)) toggle.display(dialpadToggle); else if (SearchUtil.isPhoneInput(searchText)) toggle.display(keyboardToggle); contactsFragment.setQueryFilter(searchText.getText().toString()); } }); } @Override public void onRefresh() { new AsyncTask() { @Override protected Void doInBackground(Void... params) { try { DirectoryHelper.refreshDirectory(ContactSelectionActivity.this); } catch (IOException e) { Log.w(TAG, e); } return null; } @Override protected void onPostExecute(Void result) { searchText.setText(""); contactsFragment.resetQueryFilter(); } }.execute(); } @Override public void onContactSelected(String number) {} private static class SearchUtil { public static boolean isTextInput(EditText editText) { return (editText.getInputType() & 0x0000000F) == InputType.TYPE_CLASS_TEXT; } public static boolean isPhoneInput(EditText editText) { return (editText.getInputType() & 0x0000000F) == InputType.TYPE_CLASS_PHONE; } public static boolean isEmpty(EditText editText) { return editText.getText().length() <= 0; } } }