android how to use string resource in a java class

后端 未结 4 1058
说谎
说谎 2020-12-29 20:04

In my java class I want to use a string resource from strings.xml.

for that I have to use like below,

getString(R.string.address)

i

相关标签:
4条回答
  • 2020-12-29 20:12

    You can pass the context of the Activity class to the java class and access the resources.

    From your Activity Class

     Helper helper = new Helper(this);
    

    Your Java class

    public class Helper {
    
        Helper(Context c){
            c.getString(R.string.address);
        }
    }
    
    0 讨论(0)
  • 2020-12-29 20:12

    You could done if you add this line:

    // this is the object itself, and idString is the ID String bound to the literal.
    this.getString(R.string.idString)
    

    I hope this comment helps you!

    Brs.

    0 讨论(0)
  • 2020-12-29 20:27

    A class does not have a context and to use a string resource a context is needed. So just call the class from an activity and give a parameter context and within your class constructor just use that context to get the string resource.

    In your custom class you need to import the R namespace for the project to get the resource Id.

    import com.myrandomapp.R;
    

    Then to get the actual string

    context.getString(R.string.COOL_STRING)
    
    0 讨论(0)
  • 2020-12-29 20:28

    You can create a static Application Context in your custom Application class

    public class App extends Application{
    
        private static Context mContext;
    
        @Override
        public void onCreate() {
            super.onCreate();
            mContext = getApplicationContext();
        }
    
        public static Context getContext(){
            return mContext;
        }
    }
    

    Then you just need to call App.getContext().getResources() to get any resource values.

    Just remember that this Context is Application type, so there are things that this Context is not good to use. Read this for further info.

    0 讨论(0)
提交回复
热议问题