I\'m developing an application for Android tablet 3.0 that has one activity that should be scrollable in the horizontal axis, like an e-book.
For that, I\'m using a
Try this code. ImageView imageView = new ImageView(this); imageView.setScaleType(ImageView.ScaleType.FIT_CENTER); imageView.setLayoutParams(new LayoutParams(LayoutParams.FILL_PARENT, LayoutParams.WRAP_CONTENT)); imageView.setBackgroundColor(Color.blue); parent.addView(v,params);