Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
2D文字列配列を新しいアクティビティに渡したい。たくさんの答えを見ましたが、誰も得られませんでした。これどうやってするの。
使用する
Intent mIntent = new Intent(this, Example.class); Bundle mBundle = new Bundle(); mBundle.putSerializable("list", selected_list); mIntent.putExtras(mBundle);
渡された配列を取得するには、
String[][] passedString_list = (String[][]) bundle.getSerializable("list");