Android 资源文件

Android string.xml为我们的应用程序提供可选样式和格式的文本数据。可以有三种类型的字符串资源:字符串,字符串数组,复数。下面是Android string.xml示例:

    //普通字符串
    Hello world!
    //单个string占位符
    Hello %s!
    //多个string占位符
    %s 上了 %s 天班
    //加粗world
    world!]]>
    //hello world添加字体大小,行高,颜色以及换行
    Hello world!

换行了哦]]>
//复数 %s apple %s apples //字符串数组 苹果 香蕉 橘子

具体用法

LogUtil.debug(String.format(getResources().getString(R.string.hello_str),"我的"));

LogUtil.debug(String.format(getResources().getString(R.string.string_w),"我","3"));

tv1.setText(Html.fromHtml(String.format(getResources().getString(R.string.html_str))));

tv2.setText(Html.fromHtml(String.format(getResources().getString(R.string.other_html_str))));

String[] array = getResources().getStringArray(R.array.array_of_strings);

LogUtil.debug("array---->"+array[0]+"  "+array[1]+"   "+array[2]);

更多内容,请点击这里

你可能感兴趣的:(Android 资源文件)