如何通过设置首选项更改应用程序的字体大小?

发布于 2024-11-13 00:48:52 字数 83 浏览 2 评论 0原文

在我的应用程序中,我想在设置首选项中提供添加字体大小,例如 18、20、22,因此用户选择 20,然后整个应用程序应仅使用该字体大小。如何实现这一目标?

In my application, i want to provide add font size in setting preferences for example 18, 20, 22, so that is user selects 20 then whole application should use that font size only. How to achieve this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

世界等同你 2024-11-20 00:48:52

您可以在表单中定义设置代码并执行以下操作:

 private void loadSettings() {

    //load font from global unit named G
    G.typeFace = Typeface.createFromAsset(getAssets(), "fonts/BYekan.ttf");

    TextView titleText = (TextView) findViewById(R.id.reg_title);
    TextView regTitleText = (TextView) findViewById(R.id.reg_title);
    TextView bigText = (TextView) findViewById(R.id.textView_big);
    TextView button_titlet = (TextView) findViewById(R.id.reg_botton_title);
    btnReg = (Button) findViewById(R.id.btn_reg);

    titleText.setTypeface(G.typeFace);
    bigText.setTypeface(G.typeFace);
    regTitleText.setTypeface(G.typeFace);
    button_titlet.setTypeface(G.typeFace);
    btnReg.setTypeface(G.typeFace);

     titleText.setTextSize(20);
    bigText.setTextSize(20);
    regTitleText.setTextSize(20);
    button_titlet.setTextSize(20);
    btnReg.setTextSize(20);


    //end of fonts

}

you can define a setting code in your forms and do like this:

 private void loadSettings() {

    //load font from global unit named G
    G.typeFace = Typeface.createFromAsset(getAssets(), "fonts/BYekan.ttf");

    TextView titleText = (TextView) findViewById(R.id.reg_title);
    TextView regTitleText = (TextView) findViewById(R.id.reg_title);
    TextView bigText = (TextView) findViewById(R.id.textView_big);
    TextView button_titlet = (TextView) findViewById(R.id.reg_botton_title);
    btnReg = (Button) findViewById(R.id.btn_reg);

    titleText.setTypeface(G.typeFace);
    bigText.setTypeface(G.typeFace);
    regTitleText.setTypeface(G.typeFace);
    button_titlet.setTypeface(G.typeFace);
    btnReg.setTypeface(G.typeFace);

     titleText.setTextSize(20);
    bigText.setTextSize(20);
    regTitleText.setTextSize(20);
    button_titlet.setTextSize(20);
    btnReg.setTextSize(20);


    //end of fonts

}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文