我在活動中有彈出窗口。我想要的是這個彈出窗口在3秒後開始,當活動被創建並且持續3秒鐘時。請幫忙嗎?活動創建3秒後顯示PopupWindow 3秒
這裏是我的代碼:
try {
LayoutInflater inflater1 = (LayoutInflater) MainActivity.this
.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
// Inflate the view from a predefined XML layout
View layout = inflater1.inflate(R.layout.activity_pop_up,
(ViewGroup) findViewById(R.id.relativeLayoutZaFragment));
// create a 300px width and 470px height PopupWindow
pw = new PopupWindow(layout, 300, 470, true);
// display the popup in the center
pw.showAtLocation(layout, Gravity.CENTER, 0, 0);
} catch (Exception e) {
e.printStackTrace();
}
我不能在oncreate()方法中實現這一點。 – smiljka
布爾顯示上面創建,其餘在創建 –
當我實現這個彈出不斷屏幕上,我需要以某種方式解僱 – smiljka