我试图在 android 中创建一个对话框窗口,我在其中动态创建布局并将视图添加到其中...但我想将我的视图添加到布局中的特定位置..
这是我的代码片段
final Dialog dialog = new Dialog(this);
FrameLayout fl=new FrameLayout(this);
TextView et = new TextView(this);
et.setText("asdas");
fl.addView(et,100,1200);
ColorDrawable cd=new ColorDrawable(android.graphics.Color.TRANSPARENT);
dialog.getWindow().setBackgroundDrawable(cd);
dialog.setContentView(fl);
希望这里有人可以帮助我