2015-01-19 02:11:30 +00:00
|
|
|
/**
|
|
|
|
* 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.annotation.TargetApi;
|
|
|
|
import android.content.Context;
|
|
|
|
import android.content.res.Configuration;
|
|
|
|
import android.database.Cursor;
|
|
|
|
import android.os.Build.VERSION;
|
|
|
|
import android.os.Build.VERSION_CODES;
|
|
|
|
import android.os.Bundle;
|
2014-12-15 20:25:55 +00:00
|
|
|
import android.support.annotation.NonNull;
|
2015-01-19 02:11:30 +00:00
|
|
|
import android.support.v4.app.LoaderManager;
|
|
|
|
import android.support.v4.content.Loader;
|
|
|
|
import android.support.v7.widget.GridLayoutManager;
|
|
|
|
import android.support.v7.widget.RecyclerView;
|
|
|
|
import android.util.Log;
|
|
|
|
import android.view.MenuItem;
|
|
|
|
import android.view.View;
|
|
|
|
import android.view.WindowManager;
|
|
|
|
import android.widget.TextView;
|
|
|
|
|
|
|
|
import org.thoughtcrime.securesms.crypto.MasterSecret;
|
|
|
|
import org.thoughtcrime.securesms.database.CursorRecyclerViewAdapter;
|
|
|
|
import org.thoughtcrime.securesms.database.DatabaseFactory;
|
|
|
|
import org.thoughtcrime.securesms.recipients.Recipient;
|
|
|
|
import org.thoughtcrime.securesms.recipients.Recipient.RecipientModifiedListener;
|
|
|
|
import org.thoughtcrime.securesms.recipients.RecipientFactory;
|
|
|
|
import org.thoughtcrime.securesms.util.AbstractCursorLoader;
|
|
|
|
import org.thoughtcrime.securesms.util.DynamicLanguage;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Activity for displaying media attachments in-app
|
|
|
|
*/
|
|
|
|
public class MediaOverviewActivity extends PassphraseRequiredActionBarActivity implements LoaderManager.LoaderCallbacks<Cursor> {
|
|
|
|
private final static String TAG = MediaOverviewActivity.class.getSimpleName();
|
|
|
|
|
2014-12-15 20:25:55 +00:00
|
|
|
public static final String RECIPIENT_EXTRA = "recipient";
|
|
|
|
public static final String THREAD_ID_EXTRA = "thread_id";
|
2015-01-19 02:11:30 +00:00
|
|
|
|
|
|
|
private final DynamicLanguage dynamicLanguage = new DynamicLanguage();
|
|
|
|
|
|
|
|
private MasterSecret masterSecret;
|
|
|
|
|
|
|
|
private RecyclerView gridView;
|
|
|
|
private GridLayoutManager gridManager;
|
|
|
|
private TextView noImages;
|
|
|
|
private Recipient recipient;
|
|
|
|
private long threadId;
|
|
|
|
|
|
|
|
@Override
|
2014-12-15 20:25:55 +00:00
|
|
|
protected void onPreCreate() {
|
2015-01-19 02:11:30 +00:00
|
|
|
this.setTheme(R.style.TextSecure_DarkTheme);
|
|
|
|
dynamicLanguage.onCreate(this);
|
2014-12-15 20:25:55 +00:00
|
|
|
}
|
2015-01-19 02:11:30 +00:00
|
|
|
|
2014-12-15 20:25:55 +00:00
|
|
|
@Override
|
|
|
|
protected void onCreate(Bundle bundle, @NonNull MasterSecret masterSecret) {
|
|
|
|
this.masterSecret = masterSecret;
|
2015-01-19 02:11:30 +00:00
|
|
|
setFullscreenIfPossible();
|
|
|
|
|
|
|
|
getSupportActionBar().setDisplayHomeAsUpEnabled(true);
|
|
|
|
setContentView(R.layout.media_overview_activity);
|
|
|
|
|
|
|
|
initializeResources();
|
|
|
|
initializeActionBar();
|
|
|
|
getSupportLoaderManager().initLoader(0, null, MediaOverviewActivity.this);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onConfigurationChanged(Configuration newConfig) {
|
|
|
|
super.onConfigurationChanged(newConfig);
|
|
|
|
if (gridManager != null) gridManager.setSpanCount(getResources().getInteger(R.integer.media_overview_cols));
|
|
|
|
}
|
|
|
|
|
|
|
|
@TargetApi(VERSION_CODES.JELLY_BEAN)
|
|
|
|
private void setFullscreenIfPossible() {
|
|
|
|
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
|
|
|
|
WindowManager.LayoutParams.FLAG_FULLSCREEN);
|
|
|
|
|
|
|
|
if (VERSION.SDK_INT >= VERSION_CODES.JELLY_BEAN) {
|
|
|
|
getWindow().getDecorView().setSystemUiVisibility(View.SYSTEM_UI_FLAG_FULLSCREEN);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onResume() {
|
|
|
|
super.onResume();
|
|
|
|
dynamicLanguage.onResume(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
private void initializeActionBar() {
|
|
|
|
getSupportActionBar().setTitle(recipient == null
|
|
|
|
? getString(R.string.AndroidManifest__media_overview)
|
|
|
|
: getString(R.string.AndroidManifest__media_overview_named, recipient.toShortString()));
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onPause() {
|
|
|
|
super.onPause();
|
|
|
|
}
|
|
|
|
|
|
|
|
private void initializeResources() {
|
2014-12-15 20:25:55 +00:00
|
|
|
threadId = getIntent().getLongExtra(THREAD_ID_EXTRA, -1);
|
2015-01-19 02:11:30 +00:00
|
|
|
|
|
|
|
noImages = (TextView ) findViewById(R.id.no_images );
|
|
|
|
gridView = (RecyclerView) findViewById(R.id.media_grid);
|
|
|
|
gridManager = new GridLayoutManager(this, getResources().getInteger(R.integer.media_overview_cols));
|
|
|
|
gridView.setLayoutManager(gridManager);
|
|
|
|
gridView.setHasFixedSize(true);
|
|
|
|
|
|
|
|
final long recipientId = getIntent().getLongExtra(RECIPIENT_EXTRA, -1);
|
|
|
|
if (recipientId > -1) {
|
|
|
|
recipient = RecipientFactory.getRecipientForId(this, recipientId, true);
|
|
|
|
recipient.addListener(new RecipientModifiedListener() {
|
|
|
|
@Override
|
|
|
|
public void onModified(Recipient recipient) {
|
|
|
|
initializeActionBar();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
recipient = null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean onOptionsItemSelected(MenuItem item) {
|
|
|
|
super.onOptionsItemSelected(item);
|
|
|
|
|
|
|
|
switch (item.getItemId()) {
|
|
|
|
case android.R.id.home: finish(); return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public Loader<Cursor> onCreateLoader(int i, Bundle bundle) {
|
|
|
|
return new ThreadMediaLoader(this, threadId);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onLoadFinished(Loader<Cursor> cursorLoader, Cursor cursor) {
|
|
|
|
Log.w(TAG, "onLoadFinished()");
|
|
|
|
gridView.setAdapter(new ImageMediaAdapter(this, masterSecret, cursor));
|
|
|
|
noImages.setVisibility(gridView.getAdapter().getItemCount() > 0 ? View.GONE : View.VISIBLE);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onLoaderReset(Loader<Cursor> cursorLoader) {
|
|
|
|
((CursorRecyclerViewAdapter)gridView.getAdapter()).changeCursor(null);
|
|
|
|
}
|
|
|
|
|
|
|
|
public static class ThreadMediaLoader extends AbstractCursorLoader {
|
|
|
|
private final long threadId;
|
|
|
|
|
|
|
|
public ThreadMediaLoader(Context context, long threadId) {
|
|
|
|
super(context);
|
|
|
|
this.threadId = threadId;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public Cursor getCursor() {
|
|
|
|
return DatabaseFactory.getPartDatabase(getContext()).getImagesForThread(threadId);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|