I would like the user to be able to edit the font size and font style from within my app. The app should just call the default settings.
displayBtn = (Button) findViewById(R.id.displayBtn);
displayBtn .setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
startActivity(new Intent(Settings.ACTION_DISPLAY_SETTINGS));
}
});