如何通过程序在其他图像上添加一个图像?

时间:2017-12-31 12:58:01

标签: android listview gridview imageview

我是Android新手。我需要通过程序动态地在另一个图像上添加一个图像。我已经预定义了像" 8"然后我想通过程序在它上面添加图像4。我需要动态添加图像。

我应该使用什么来实现此功能?

list image

我尝试通过以下代码实现此功能,但这不起作用。

list image

LinearLayout linearLayout= new LinearLayout(this);
linearLayout.setOrientation(LinearLayout.VERTICAL);
linearLayout.setLayoutParams(new 
LinearLayout.LayoutParams(LinearLayout.LayoutParams.MATCH_PARENT,
    LinearLayout.LayoutParams.MATCH_PARENT));


 ImageView imageView = new ImageView(getApplicationContext());
 imageView.setImageResource(R.drawable.card2);

   LinearLayout.LayoutParams params = 
 (LinearLayout.LayoutParams)card1.getLayoutParams();
 params.setMargins(0, 30, 0, 0);
 imageView.setLayoutParams(params);

 linearLayout.addView(imageView);
 setContentView(linearLayout);

0 个答案:

没有答案