我想使用从一个类到另一个类的值数组。在 ActivityReceiver 中,我获取了一个数组并将其传递给 String inkLevel [][]。
之后我想获得特定的值,这样我就有了 getInkLevel 并将其返回到保存我想要的特定值(即颜色 [])的数组中。
public class ActivityReceiver extends Activity {
public ArrayList<String[]> arrays ;
public String[]color = new String [4];
public String[][] inkLev ;
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
Bundle bundle = getIntent().getExtras();
if (bundle != null)
{
int count = bundle.getInt("com.PrinterStatus.AppLab.ARRAYS_COUNT", 0);
ArrayList<String[]> arrays = new ArrayList<String[]>(count);
for (int i = 0; i < count; i++)
{
arrays.add(bundle.getStringArray("com.PrinterStatus.AppLab.ARRAY_INDEX" + i));
String[][] inkLev = arrays.toArray(new String[][]{});
}
}
}
public String[] getInkLevel(String[] lev)
{
color[0]= inkLev[0][2];
color[1]= inkLev[1][2];
color[2]= inkLev[2][2];
color[3]= inkLev[3][2];
return color;
}
在另一个班级。我输入了numberC 变量。我想将特定值,例如颜色 [1] 放入该变量中。
...
tonerAmountC = (TextView)mSmartView.findViewById(R.id.ImageC);
tonerAmountC.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v)
{
enterednumberC = ??;
Log.d(SampleExtensionService.LOG_TAG, "Read from file: " + enterednumberC);
tonerAmountC.setText(enterednumberC);
}
});
mSmartView.addViewToWatch(tonerAmountC);
...
你知道我应该添加什么吗?谢谢