2011-07-16 35 views

回答

1

你可以很容易地發現了這個出在本網站上谷歌搜索,或現有的許多問題,如this.但這裏是你需要做什麼......

你需要把它作爲一個額外的:

String puzzle = "630208010200050089109060030"+ 
        "008006050000187000060500900"+ 
        "09007010681002000502003097"; 

Intent i = new Intent(this, ToClass.class); 
i.putExtra("epuzzle", puzzle); 
startActivity(i); 

然後從你的新的活動中提取這樣的:

Intent intent = getIntent(); 
String easyPuzzle = intent.getExtras().getString("epuzzle"); 
0

在父活動我會創造一個意向兒童活動。然後使用putExtra發送數據。然後使用getExtra或其他任何變體來獲取字符串。在這個例子中我使用了getStringExtra。

Intent childActivity = new Intent(this, Child.class); 
childActivity.putExtra("parent_parameter", "This String is for child"); 
startActivity(childActivity); 

在Child.java活動中。

Intent childIntent = getIntent(); 
String fromParent = childIntent.data.getStringExtra("parent_parameter"); 
+0

重複已經給出兩次答案的重點是什麼?我只是添加了我的代碼示例! – Kenny

相關問題