added preferences activity to iitcm...adds possibility to force desktop mode
This commit is contained in:
16
mobile/src/com/cradle/iitc_mobile/IITC_Settings.java
Normal file
16
mobile/src/com/cradle/iitc_mobile/IITC_Settings.java
Normal file
@ -0,0 +1,16 @@
|
||||
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();
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user