开发者

Questions on string.xml and size of the icon

In string.xml,

<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="app_name">nameofmyapp</string>
</resources>

I wanna change the text size how do I do that..also I want to increase the size of my icon which appears on my phone.. I tried google's http://android-ui-utils.googlecode.com/hg/asset-studio/dist/icons-notification.html#source.type=text&source.space.trim=1&source.space.pad=0.2&source.text.text=Correc开发者_如何学Got!&source.text.font=Helvetica&shape=square&name=example Didn't work! any suggestions? #newbie #thanks


If you want to change the size of the name string and size of icon on the home screen, such that it will appear bigger relative to other apps, you can not do this.

The launcher that is installed on the user's device determines how to display the icon + title, you have no control over this.


Strings in string.xml only contain values.
How it should be displayed must be specified at the time it is used in UI context.
For example, if you use app_name in TextView:

<TextView
    android:layout_width="match_parent" 
    android:layout_height="match_parent"
    android:text="@string/app_name"
    android:textSize="20sp"/>
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜