mirror of
https://github.com/oxen-io/session-android.git
synced 2024-11-24 02:25:19 +00:00
81 lines
2.2 KiB
Java
81 lines
2.2 KiB
Java
package org.thoughtcrime.securesms;
|
|
|
|
import android.content.ActivityNotFoundException;
|
|
import android.content.Intent;
|
|
import android.os.Bundle;
|
|
import android.support.v4.app.FragmentTransaction;
|
|
import android.view.MenuItem;
|
|
import android.widget.Toast;
|
|
|
|
import org.thoughtcrime.securesms.logging.Log;
|
|
import org.thoughtcrime.securesms.logsubmit.SubmitLogFragment;
|
|
import org.thoughtcrime.securesms.util.DynamicTheme;
|
|
|
|
import network.loki.messenger.R;
|
|
|
|
/**
|
|
* Activity for submitting logcat logs to a pastebin service.
|
|
*/
|
|
public class LogSubmitActivity extends BaseActionBarActivity implements SubmitLogFragment.OnLogSubmittedListener {
|
|
|
|
private static final String TAG = LogSubmitActivity.class.getSimpleName();
|
|
private DynamicTheme dynamicTheme = new DynamicTheme();
|
|
|
|
@Override
|
|
protected void onCreate(Bundle icicle) {
|
|
dynamicTheme.onCreate(this);
|
|
super.onCreate(icicle);
|
|
setContentView(R.layout.log_submit_activity);
|
|
getSupportActionBar().setDisplayHomeAsUpEnabled(true);
|
|
SubmitLogFragment fragment = SubmitLogFragment.newInstance();
|
|
FragmentTransaction transaction = getSupportFragmentManager().beginTransaction();
|
|
transaction.replace(R.id.fragment_container, fragment);
|
|
transaction.commit();
|
|
}
|
|
|
|
@Override
|
|
protected void onResume() {
|
|
dynamicTheme.onResume(this);
|
|
super.onResume();
|
|
}
|
|
|
|
@Override
|
|
public boolean onOptionsItemSelected(MenuItem item) {
|
|
super.onOptionsItemSelected(item);
|
|
switch (item.getItemId()) {
|
|
case android.R.id.home:
|
|
finish();
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
@Override
|
|
public void onSuccess() {
|
|
Toast.makeText(getApplicationContext(), R.string.log_submit_activity__thanks, Toast.LENGTH_LONG).show();
|
|
finish();
|
|
}
|
|
|
|
@Override
|
|
public void onFailure() {
|
|
Toast.makeText(getApplicationContext(), R.string.log_submit_activity__log_fetch_failed, Toast.LENGTH_LONG).show();
|
|
finish();
|
|
}
|
|
|
|
@Override
|
|
public void onCancel() {
|
|
finish();
|
|
}
|
|
|
|
@Override
|
|
public void startActivity(Intent intent) {
|
|
try {
|
|
super.startActivity(intent);
|
|
} catch (ActivityNotFoundException e) {
|
|
Log.w(TAG, e);
|
|
Toast.makeText(this, R.string.log_submit_activity__no_browser_installed, Toast.LENGTH_LONG).show();
|
|
}
|
|
}
|
|
}
|