16 lines
462 B
Java
16 lines
462 B
Java
package com.cradle.iitc_mobile;
|
|
|
|
import android.app.Activity;
|
|
import android.os.Bundle;
|
|
|
|
public class IITC_Settings 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 IITC_SettingsFragment())
|
|
.commit();
|
|
}
|
|
} |