如何从android中的string.xml读取值?

时间:2010-02-02 12:31:38

标签: android string layout

我写了这句话:

String Mess = R.string.mess_1 ;

获取字符串值,但不是返回字符串,而是给我类型为整数的id。我怎样才能得到它的字符串值?我在string.xml文件中提到了字符串值。

18 个答案:

答案 0 :(得分:754)

试试这个

String mess = getResources().getString(R.string.mess_1);

<强>更新

String string = getString(R.string.hello);

您可以使用getString(int)getText(int)来检索字符串。 getText(int)将保留应用于字符串的任何富文本样式。

参考:https://developer.android.com/guide/topics/resources/string-resource.html

答案 1 :(得分:61)

活动:

this.getString(R.string.resource_name)

如果没有活动但可以访问上下文:

context.getString(R.string.resource_name)
application.getString(R.string.resource_name)

答案 2 :(得分:42)

我正在使用它:

String URL = Resources.getSystem().getString(R.string.mess_1);

答案 3 :(得分:21)

顺便说一句,也可以在strings.xml中创建字符串数组,如下所示:

<string-array name="tabs_names"> 
    <item>My Tab 1</item> 
    <item>My Tab 2</item>
</string-array>

然后从你的Activity中你可以得到如下的参考:

String[] tab_names = getResources().getStringArray(R.array.tab_names);
String tabname1=tab_names[0];//"My Tab 1"

答案 4 :(得分:10)

仅供将来参考。

String resources documentation中说:

  

您可以使用getString(int)或getText(int)来检索字符串。 getText(int)将&gt;保留应用于字符串的任何富文本样式。

答案 5 :(得分:6)

解决方案1 ​​

Context context;
String mess = context.getString(R.string.mess_1)

解决方案2

String mess = getString(R.string.mess_1)

答案 6 :(得分:3)

例如,如果要将字符串值添加到按钮,请使用

android:text="@string/NameOfTheString"

strings.xml 中定义的文本如下所示:

 <string name="NameOfTheString">Test string</string>

答案 7 :(得分:2)

在Android中使用getResources()之前,您必须引用上下文名称。

String user=getApplicationContext().getResources().getString(R.string.muser);

OR

Context mcontext=getApplicationContext();

String user=mcontext.getResources().getString(R.string.muser);

答案 8 :(得分:2)

在片段中,您可以使用

getActivity().getString(R.id.whatever);

答案 9 :(得分:1)

您可以使用此代码:

 getText(R.string.mess_1); 
  

基本上,您需要将资源ID作为参数传递给getText()方法。

答案 10 :(得分:1)

如果您参加活动,可以使用

getResources().getString(R.string.whatever_string_youWant);

如果您不在活动中 使用这个:

getApplicationContext.getResource().getString(R.String.Whatever_String_you_want)

答案 11 :(得分:0)

当你写R时。您指的是由eclipse创建的R.java类,使用getResources().getString()并传递您尝试在id方法中读取的资源的getString()

示例: String[] yourStringArray = getResources().getStringArray(R.array.Your_array);

答案 12 :(得分:0)

**

  

我希望这段代码是有益的

**

String user = getResources().getString(R.string.muser); 

答案 13 :(得分:0)

更新

  • 您可以在 getString(R.string.some_string_id) Activity 中使用Fragment
  • 您可以在没有直接访问Context.getString(R.string.some_string_id)方法的地方使用getString()。像Dialog

问题您没有Context访问权限的地方,就像您的Util类中的方法一样。

假设下面的方法没有上下文。

public void someMethod(){
    ...
    // can't use getResource() or getString() without Context.
}

现在,您将在此方法中传递Context作为参数并使用getString().

public void someMethod(Context context){
    ...
    context.getString(R.string.some_id);
}

我要做的是

public void someMethod(){
    ...
    App.getRes().getString(R.string.some_id)
}

什么?在您的应用中的任何地方使用都很简单!

因此,这是一个奖励独特的解决方案,您可以通过该解决方案从Util class之类的任何地方访问资源。

import android.app.Application;
import android.content.res.Resources;

public class App extends Application {
    private static App mInstance;
    private static Resources res;


    @Override
    public void onCreate() {
        super.onCreate();
        mInstance = this;
        res = getResources();
    }

    public static App getInstance() {
        return mInstance;
    }

    public static Resources getResourses() {
        return res;
    }

}

将名称字段添加到您的manifest.xml <application标签中。

<application
        android:name=".App"
        ...
        >
        ...
    </application>

现在你很好。

答案 14 :(得分:0)

详细信息

  • Android Studio 3.1.4
  • 科特林版本:1.2.60

任务

  • 单行使用
  • 最小代码
  • 使用编译器的建议

步骤1。Application()

  

获取指向您应用程序上下文的链接

class MY_APPLICATION_NAME: Application() {

    companion object {
        private lateinit var instance: MY_APPLICATION_NAME

        fun getAppContext(): Context = instance.applicationContext
    }

    override fun onCreate() {
        instance = this
        super.onCreate()
    }

}

步骤2。添加int扩展名

inline fun Int.toLocalizedString(): String = MY_APPLICATION_NAME.getAppContext().resources.getString(this)

用法

  

strings.xml

<resources>
    <!-- .......  -->
    <string name="no_internet_connection">No internet connection</string>
    <!-- .......  -->
</resources>
  

获取字符串值:

val errorMessage = R.string.no_internet_connection.toLocalizedString()

结果

enter image description here enter image description here

答案 15 :(得分:0)

getString(R.string.your_string)获取结果

答案 16 :(得分:0)

String myString = getResources().getString(R.string.here_your_string_name);

现在,您的字符串将被复制到myString中。我希望它对您有用。

答案 17 :(得分:0)

您可以直接读取在strings.xml中定义的值:

<resources>
    <string name="hello">Hello StackOverflow!</string>
</resources>

并设置为变量:

String mymessage = getString(R.string.hello);

但是我们可以在视图中定义字符串:

<TextView
    android:id="@+id/myTextView"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="@string/hello"/>