我试图在点击按钮时将值存储到数组中,然后在存储在数组中时将其调用。
这是我的数组代码:
public class Favorites extends ListActivity {
static ArrayList<String> ItemArray = new ArrayList<String>();
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
// Full Screen
requestWindowFeature(Window.FEATURE_NO_TITLE);
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
WindowManager.LayoutParams.FLAG_FULLSCREEN);
setContentView(R.layout.favorites);
}
public void add(String Item) {
ItemArray.add(Item);
}
}
这是我点击按钮时的代码
String Item;
Item=getItem();
Bundle value= new Bundle();
value.putStringArrayList(Item, MyArrayClass.ItemArray);
答案 0 :(得分:2)
不太确定你在这里问什么,但是如果你想在数组列表中添加一些东西你会打电话:
ItemArray.add(Item);
就像你在add函数中一样,要从数组列表中获取值,请调用:
ItemArray.get(i);
其中i是您想要的项目的索引。 希望这有帮助!