blob: abaf8c6876553fd8da36e65484e74c8d138f62b7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
package eu.siacs.conversations.ui;
import android.app.Activity;
import android.os.Bundle;
public class SettingsActivity extends Activity {
@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();
}
}
|