Basically, I have this LazyList which originally created by [Fedor][1] , I am just wondering if there is anyway to put it inside a dialog. Please help me, I’ve been struggling for days trying to figure this out, I really need your help. Thanks in advance!
Here his code when you need it:
p
list.setOnItemClickListener(new OnItemClickListener() {
public void onItemClick(AdapterView<?> arg0, View arg1, int position,long id) {
if(position == 0){
final Dialog dialog = new Dialog(MainPictures.this, R.style.CustomDialogTheme);
dialog.setContentView(R.layout.customlayout);
dialog.setTitle(null);
dialog.setCancelable(true);
dialog.show();
WindowManager.LayoutParams lp = dialog.getWindow().getAttributes();
lp.dimAmount=0.5f;
dialog.getWindow().setAttributes(lp);
dialog.getWindow().addFlags(WindowManager.LayoutParams.FLAG_BLUR_BEHIND);
}
else {
System.out.println("Error");
}
}
});
}
private String[] mStrings={
"http://www.urlurl/hi.png",
"http://www.urlurl/hi.png",
};
}
have a lokk at this.
http://developer.android.com/guide/topics/ui/dialogs.html
Update:
Another solution could be Create an ACtivity and Put listView in it and make its Theme as Dialog.
read this to know how to set theme http://developer.android.com/guide/topics/ui/themes.html