2014-02-28 17:46:01 +00:00
|
|
|
package eu.siacs.conversations.ui;
|
2014-01-24 01:04:05 +00:00
|
|
|
|
|
|
|
import android.os.Bundle;
|
|
|
|
|
2014-08-27 07:43:53 +00:00
|
|
|
public class SettingsActivity extends XmppActivity {
|
2014-01-24 01:04:05 +00:00
|
|
|
@Override
|
|
|
|
protected void onCreate(Bundle savedInstanceState) {
|
|
|
|
super.onCreate(savedInstanceState);
|
|
|
|
|
|
|
|
// Display the fragment as the main content.
|
|
|
|
getFragmentManager().beginTransaction()
|
|
|
|
.replace(android.R.id.content, new SettingsFragment()).commit();
|
|
|
|
}
|
|
|
|
|
2014-08-27 07:43:53 +00:00
|
|
|
@Override
|
|
|
|
void onBackendConnected() {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2014-01-24 01:04:05 +00:00
|
|
|
}
|