単純な動作する PopupWindow を作成するには、次のことを行う必要があります。
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>
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);
pw.showAtLocation(this.findViewById(R.id.main), Gravity.CENTER, 0, 0);
私の要件は、私が必要とすることです
<TEXTVIEW android:layout_height="wrap_content" android:layout_width="fill_parent" />
そして
<BUTTON android:id="@+id/end_data_send_button" android:text="Cancel"/>
私の中でpopup_example.xml
。Java コードでこれら 2 つのコンポーネントを処理するにはどうすればよいですか?