Saving Text Size In Shared Preference
I'm trying out to save the text size in shared preference ,while running the project my application stops unexpectedly here is the code : SharedPreferenceActivity.class package c
Solution 1:
find the views in your onCreate
method.
publicvoidonCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
seek=(SeekBar)findViewById(R.id.seekBar1);
ed1=(EditText)findViewById(R.id.editText1);
b=(Button)findViewById(R.id.button1);
...
...
}
Post a Comment for "Saving Text Size In Shared Preference"