Я хочу получить string[][]
от sendBroadcast, но не получилось.
во-первых, я настроил sendBroadcast:
Intent intent = new Intent("json_info");
intent.putExtra("routeshout", result);
sendBroadcast(intent);
, в результате чего string[][]
и там:
@Override
public void onReceive(Context context, Intent intent) {
// TODO Auto-generated method stub
String[][] str_result = intent.getStringArrayExtra("routeshout");
result.setText(str_result[0]);
Log.d(TAG,"onReceive: "+str_result[1]);
}
};
но я могу получить string[][]
, применив String[][] str_result = intent.getStringArrayExtra("routeshout");
любое предложение ???