我想創建一個從可繪製文件夾讀取圖像的HorizontalScrollView。圖像的名稱是「image1」,「image2」...「image20」。我不知道如何使用這些數字來閱讀它們。這裏是我有:將圖像添加到HorizontalScrollView
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
LinearLayout sv = (LinearLayout) findViewById (R.id.images);
for (int i=1 ; i<20; i++){
ImageView iv = new ImageView (this);
iv.setBackgroundResource (R.drawable.image1);
sv.addView(iv);
}
}
非常感謝您的幫助,這非常有用 – Fernandez6
很高興我幫助了! :) – hardartcore