This question is a almost dublicate of Android App: how to read Font Size under Settings? I read the answer of CommonsWare which points to use Settings.System.FONT_SCALE
. So I wrote this few lines:
float scale = -66.6f;
try {
scale = android.provider.Settings.System.getFloat(getContentResolver(),
android.provider.Settings.System.FONT_SCALE);
} catch(SettingNotFoundException e) {
Log.e(getClass().getSimpleName(), "Error: ", e);
}
Toast.makeText(this, "scale=" + scale, Toast.LENGTH_LONG).show();
My problem is that I always get the SettingNotFoundException
I'm using an Android 4.2.2 device. By the way I that code is in an onCreate
callback of an Activity
.
I also googled for that problem and found about 3 sites which uses the same code. Is some special permission required? I tried also the permission android.permission.WRITE_SETTINGS
without success.
I just found in the source code of Settings.System
this function:
/** @hide */
public static void getConfigurationForUser(ContentResolver cr,
Configuration outConfig, int userHandle) {
outConfig.fontScale = Settings.System.getFloatForUser(
cr, FONT_SCALE, outConfig.fontScale, userHandle);
if (outConfig.fontScale < 0) {
outConfig.fontScale = 1;
}
}
There is however the FONT_SCALE
in usage so I checked for that Configuration
class where the documentation points to getResources().getConfiguration()
. So I cound fix my code by using:
float scale = getResources().getConfiguration().fontScale;