// 获取现有文本大小 float oldFontSize = textView.getTextSize();
// 设置字体大小并存储 float newFontSize = oldFontSize * 1.5f; // 增加 50% SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(this); SharedPreferences.Editor editor = prefs.edit(); editor.putFloat("font_size", newFontSize); editor.commit();
// 应用新字体大小 textView.setTextSize(TypedValue.COMPLEX_UNIT_PX, newFontSize);