forked from jens/Automation
20 lines
445 B
Java
20 lines
445 B
Java
|
package com.jens.automation2;
|
||
|
|
||
|
import android.os.Bundle;
|
||
|
import android.preference.ListPreference;
|
||
|
import android.preference.PreferenceActivity;
|
||
|
|
||
|
import com.jens.automation2.R.layout;
|
||
|
|
||
|
public class ActivitySettings extends PreferenceActivity
|
||
|
{
|
||
|
ListPreference lpStartScreenOptionsValues;
|
||
|
|
||
|
@Override
|
||
|
protected void onCreate(Bundle savedInstanceState)
|
||
|
{
|
||
|
super.onCreate(savedInstanceState);
|
||
|
addPreferencesFromResource(layout.settings);
|
||
|
}
|
||
|
}
|