是否可以在Android项目中访问或使用来自不同包(或包库)的方法?
答案 0 :(得分:2)
您可以导入其他包,以便更改您应该在要导入的包中定义set-functions的值。
e.g
public void setString (String sNew) // in case its a string
{
YOURVALUE = sNew; // YOURVALUE should be the value you want to change
}
为了获得该值,您应该使用get-function
public String getString ()
{
return YOURVALUE;
}
只需将类型更改为您需要的类型。
之后,您可以将这些功能称为:PACKAGENAME.setString("This is the new Value");
System.out.println(PACKAGENAME.getString());