this is my code :
LinearLayout imageViewParent = (LinearLayout) findViewById(R.id.imageViewParent);
ImageView view = new ImageView(this);
imageViewParent.addView(view);
view.setScaleType(ScaleType.MATRIX);
view.setBackgroundResource(R.drawable.np);
In this code scale type to matrix not work(it fix image to parents),but when I implement this in xml it works fine! can every one help me? thank you!
You should use setImageResource not setBackgroundResource.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With