我是一个新的Android开发人员,试图编写一本简单的联系簿。当我选择删除按钮时,它必须在弹出窗口中要求确认。但是没有弹出窗口的背景。在我的代码中,我在同一个父活动的监听器中编写了弹出窗口。
protected void delPopup() {
// TODO Auto-generated method stub
LayoutInflater inflater = (LayoutInflater) DisplayContact.this
.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View layout = inflater.inflate(R.layout.sure,(ViewGroup) findViewById(R.id.popup_element));
yes_btn = (Button) layout.findViewById(R.id.buttonYes);
no_btn = (Button) layout.findViewById(R.id.buttonNo);
pw = new PopupWindow(layout, 300, 470, true);
pw.showAtLocation(layout, Gravity.CENTER, 0, 0);
prepareListeners();
buttonClick();
mOpenHelper = new DatabaseHelper(this);
};
并且xml文件就像这样
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/popup_element"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
和文本视图,2个按钮 有人可以指导我这是什么问题吗?
答案 0 :(得分:2)
默认情况下,弹出窗口中的背景是透明的。您必须为弹出窗口设置背景。
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/popup_element"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#000000"
android:orientation="vertical" >
答案 1 :(得分:0)
尝试
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/popup_element"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical" >