有关string.xml和图标大小的问题

时间:2011-09-23 16:28:23

标签: android

在string.xml中,

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

我想更改文字大小我该怎么做...所以我想增加我的图标的大小 它出现在我的手机上..我试过谷歌的 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=Correct!&source.text.font=Helvetica&shape=square&name=example 没工作!有什么建议?  #newbie #thanks

2 个答案:

答案 0 :(得分:1)

如果您想在主屏幕上更改名称字符串的大小和图标的大小,以使其相对于其他应用程序显得更大,则无法执行此操作。

用户设备上安装的启动器决定了如何显示图标+标题,您无法控制它。

答案 1 :(得分:0)

string.xml中的字符串只包含值 必须在UI上下文中使用时指定它的显示方式 例如,如果在TextView中使用app_name:

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