Activity中如何获取strings.xml中的资源

 方法一:this.getString(R.string.resource_name);

 方法二:getResources().getString(R.string.resource_name);

在 Layout XML 调用字符串资源:
<TextView
    
android:layout_width="fill_parent"
    android:layout_height
="wrap_content"
    android:text
="@string/hello"
/>


在 Activity 获取字符串资源:

this.getString(R.string.hello)


从 Context 获取字符串资源:

context.getString(R.string.hello)


从 Application 获取字符串资源:

application.getString(R.string.hello)

你可能感兴趣的:(Android小知识)