无法进行对话框的布局

时间:2014-11-25 11:54:22

标签: android android-layout

我想为image 这样的简单注册页面制作一个Dialog框 但我无法弄清楚我该怎么做。我基本上都在努力将交叉图标放到Dialog框的右上角。

有没有图书馆可以做到这一点?

1 个答案:

答案 0 :(得分:0)

试试这个:

final Dialog exitBayDialog = new Dialog(getActivity());
        exitBayDialog.requestWindowFeature(Window.FEATURE_NO_TITLE);
        exitBayDialog.getWindow().setBackgroundDrawable(new ColorDrawable(0));
        exitBayDialog.setContentView(R.layout.your_dialog_layout);
        final EditText etSearch = (EditText) exitBayDialog.findViewById(R.id.etVehicleNumber);
        exitBayDialog.show();