J'ai créé un exemple de travail basé sur ce Google Groupes post.
Pour créer un simple travail PopupWindow, vous devez effectuer les opérations suivantes:
- Créer une mise en page XML qui décrit le point de Vue qui sera affiché dans le PopupWindow.
- Invoquer la PopupWindow en gonflant la mise en page XML, et d'attribuer une "vue parent" à la pop-up.
popup_example.xml:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:padding="10dip"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dip"
android:text="Test Pop-Up"
/>
</LinearLayout>
Le code Java:
LayoutInflater inflater = (LayoutInflater)
this.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
PopupWindow pw = new PopupWindow(
inflater.inflate(R.layout.popup_example, null, false),
100,
100,
true);
// The code below assumes that the root container has an id called 'main'
pw.showAtLocation(this.findViewById(R.id.main), Gravity.CENTER, 0, 0);