1.将输出helloword变为输出中文
当在activity_main.xml中修改android:text="hello world"为“开心消消乐”是会报错,原因在于android 版本升到4.1后对于该中文有所限制。需要在res资源包下的values包中找到strings.xml配置文件,为“开心消消乐”字符串配置资源,即
<string name="app_name">开心消消乐</string>
之后修改android:text为
android:text="@string/app_name"
使用@引用该字符串资源