I would like to place the dialog on a particular position on the screen(-10px from top and -5px from let).
I did apply the theme and added the android:scrollX<
android:scrollX<
This is the code!
LayoutParams lp = this.getWindow().getAttributes(); lp.x=50;lp.y=20;lp.width=100;lp.height=200;lp.gravity=Gravity.TOP | Gravity.LEFT; lp.dimAmount=0; lp.flags=LayoutParams.FLAG_LAYOUT_NO_LIMITS | LayoutParams.FLAG_NOT_TOUCH_MODAL; this.setContentView(view, lp);