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>加粗
[]
更多精彩
赞助商链接