Android PopUpWindow有两个按钮,textView和TextEdit

时间:2014-05-16 04:31:02

标签: android android-popupwindow

我有我的应用程序,我在其中触摸一个按钮并显示一个弹出窗口。里面是以下布局:

popupip.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginTop="15dp"
android:orientation="vertical"
 >

<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="20dp"
android:background="@drawable/popup_border" >
>

<LinearLayout
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:orientation="vertical"
    android:layout_margin="10dp" >

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content" >

        <TextView
            android:id="@+id/textView1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Dirección IP: " />

        <TextView
            android:id="@+id/ip"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:hint="@string/dir_ip" />

    </LinearLayout>

    <EditText
        android:id="@+id/new_ip"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginBottom="5dp"
        android:layout_marginTop="5dp"
        android:background="@android:color/white"
        android:text="@string/nuevaip" />

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content" >

        <Button
            android:id="@+id/guardar"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginLeft="25dp"
            android:text="Guardar"
            android:onClick="guardarip" />

        <Button
            android:id="@+id/salir"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Salir" />
    </LinearLayout>
</LinearLayout>

按钮salir是关闭按钮。另外我想在textedit视图中写一些文本,所以当我触摸guardar按钮时,它将它存储在一个字符串中并将其放在textview ip中。 我还有弹出窗口的以下代码:

Activity_main.java

@Override
protected void onCreate(Bundle savedInstanceState) {
final Button botonip = (Button)findViewById(R.id.btn_ip);
    botonip.setOnClickListener(new Button.OnClickListener(){

@Override
public void onClick(View arg0) {
LayoutInflater layoutInflater 
 = (LayoutInflater)getBaseContext()
  .getSystemService(LAYOUT_INFLATER_SERVICE);  
View popupView = layoutInflater.inflate(R.layout.popupip, null);  
         final PopupWindow popupWindow = new PopupWindow(
           popupView, 
           LayoutParams.WRAP_CONTENT,  
                 LayoutParams.WRAP_CONTENT);  

         Button btnDismiss = (Button)popupView.findViewById(R.id.salir);
         btnDismiss.setOnClickListener(new Button.OnClickListener(){

 @Override
 public void onClick(View v) {
  // TODO Auto-generated method stub
  popupWindow.dismiss();
 }});     


         popupWindow.showAsDropDown(botonip, 50, -30);

}});                
}

我的问题是,是否可以为弹出窗口中的其他元素使用多个popupView.finViewById,或者如何处理按钮,textView和TextEdit?

1 个答案:

答案 0 :(得分:1)

是的,您可以根据需要多次使用popupView.findViewById(),就像您可以在活动中多次使用findViewById()一样。