WEB开发网
开发学院手机开发Android 开发 android中的格式化字符串 阅读

android中的格式化字符串

 2010-07-01 15:07:00 来源:WEB开发网   
核心提示:Java代码在strings.xml文件中定义:在strings.xml文件中定义:Java代码< string name="welcome_messages">你好, %1$s! 是第 %2$d 个人.< string name="welcome_messages&qu

Java代码

在strings.xml文件中定义:

在strings.xml文件中定义:

Java代码

< string name="welcome_messages">你好, %1$s! 是第 %2$d 个人.

< string name="welcome_messages">你好, %1$s! 是第 %2$d 个人.

Java代码

在java文件中这么写

在java文件中这么写

Java代码

TextView textView = (TextView) findViewById(R.id.t);

textView.setText(String.format(getResources().getString(R.string.welcome_messages),"heji",1));

TextView textView = (TextView) findViewById(R.id.t);

textView.setText(String.format(getResources().getString(R.string.welcome_messages),"heji",1));

Java代码

< string name="welcome">Welcome to < u>< i>Android< /i>< /u>!< /string>

< u>< /u>有下划线

< i>< /i>斜体字

< b>< /b>加粗

< string name="welcome">Welcome to < u>< i>Android< /i>< /u>!< /string>

< u>< /u>有下划线

< i>< /i>斜体字

< b>< /b>加粗

Tags:android 格式化 字符串

编辑录入:coldstar [复制链接] [打 印]
赞助商链接