web-dev-qa-db-ja.com

ループ内で動的にImageViewを作成する

ImageViewウィジェットで画像をロードする次のコードを記述しました。

    protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.gallery);
    i = (ImageView)findViewById(R.id.imageView1);

    new get_image("https://www.google.com/images/srpr/logo4w.png") {
        ImageView imageView1 = new ImageView(GalleryActivity.this);

        ProgressDialog dialog = ProgressDialog.show(GalleryActivity.this, "", "Loading. Please wait...", true);

        protected void onPreExecute(){
             super.onPreExecute();
        }

         protected void onPostExecute(Boolean result) {
             i.setImageBitmap(bitmap); 
         dialog.dismiss();
         }
    }.execute();


}

bu今、いくつかの画像をロードしたいと思います。このため、画像ビューを動的に作成する必要がありますが、方法がわかりません...

Forループ内でコードを実行したい:

for(int i;i<range;i++){
   //LOAD SEVERAL IMAGES. READ URL FROM AN ARRAY
}

私の主な問題は、ループ内に複数のImageViewを動的に作成することです

12
Fcoder

必要に応じて、レイアウト、画像リソース、および画像なし(動的の場合もあります)を変更できます...

LinearLayout layout = (LinearLayout)findViewById(R.id.imageLayout);
for(int i=0;i<10;i++)
{
    ImageView image = new ImageView(this);
    image.setLayoutParams(new Android.view.ViewGroup.LayoutParams(80,60));
    image.setMaxHeight(20);
    image.setMaxWidth(20);

    // Adds the view to the layout
    layout.addView(image);
}

このコードを使用してImageViewを作成できます

ImageView image = new ImageView(this);
LinearLayout.LayoutParams vp = new LinearLayout.LayoutParams(LayoutParams.FILL_PARENT, LayoutParams.FILL_PARENT);
image.setLayoutParams(vp);
image.setMaxHeight(50);
image.setMaxWidth(50);
// other image settings
image.setImageDrawable(drawable);
theLayout.addView(image);

ここで、theLayoutは、画像ビューを追加するレイアウトです。

詳細なカスタマイズについては、 dev ページをチェックしてください。ここには、すべての可能なオプションがリストされています。

1
Ahmed Aeon Axan

これを試して

 rootLayout = (LinearLayout) view1.findViewById(R.id.linearLayout1);

    LinearLayout.LayoutParams params = new LinearLayout.LayoutParams(
            LinearLayout.LayoutParams.WRAP_CONTENT, LinearLayout.LayoutParams.WRAP_CONTENT);
    params.gravity = Gravity.CENTER_VERTICAL;

    params.setMargins(0, 0, 60, 0);


    for(int x=0;x<2;x++) {
        ImageView image = new ImageView(getActivity());

        image.setBackgroundResource(R.drawable.ic_swimming);
        rootLayout.addView(image);
    }
0
Thasreef Mogral

要件がリストまたはグリッドビューに表示されている場合は、遅延読み込みリストまたはグリッドを使用する必要があります。

以下のリンクにアクセスしてください。

https://github.com/thest1/LazyList

https://github.com/abscondment/lazy-gallery

0
Amit Gupta