If I want to set the width/height of an ImageView programmatically in Java, like this:
image_view.getLayoutParams().width = 200;
What's the unit of those "200"? Is it px/dp?
Does it look "the same" on every device? (That means: Is it extremely big on tablets and totally small on smartphones?)