亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Android開發之PopupWindow創建彈窗、對話框的方法詳解

發布時間:2020-09-13 20:32:04 來源:腳本之家 閱讀:206 作者:水中魚之1999 欄目:移動開發

本文實例講述了Android開發之PopupWindow創建彈窗、對話框的方法。分享給大家供大家參考,具體如下:

簡介:

PopupWindow 可創建類似對話框風格的窗口

效果:

Android開發之PopupWindow創建彈窗、對話框的方法詳解

使用方法:

使用PopupWindow 創建對話框風格的串口秩序如下兩步即可:

1. PopupWindow 的構造器創建PopupWindow對象

2. PopupWindow 的showAsDropDown() 將其顯示效果設置為下拉顯示

3. PopupWindow 的showAtLoacation() 方法將PopupWindow() 在指定位置顯示出來

下拉顯示效果:

Android開發之PopupWindow創建彈窗、對話框的方法詳解

具體實現方法:

public class MainActivity extends Activity {
  private PopupWindow popupWindow;
  private View root;
  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    root = this.getLayoutInflater().inflate(R.layout.cell,null);//add cell.xml above you mainActivity window
    popupWindow = new PopupWindow(root,560,700);//create a popupWindow object
    root.findViewById(R.id.button01).setOnClickListener(new View.OnClickListener() {
      @Override
      public void onClick(View v) {
        //close the popupWindow
        popupWindow.dismiss();
      }
    });
  }
  public void send(View source){
    //set the location of PopupWindow
    popupWindow.showAtLocation(findViewById(R.id.send),Gravity.CENTER,20,20);//you can remove this effect
    //Use DropDown way to display
    popupWindow.showAsDropDown(root);
  }
}

mainActivity的布局文件:

<?xml version="1.0" encoding="utf-8" ?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  android:id="@+id/idtatabHost"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  android:layout_weight="1">
  <Button
    android:id="@+id/send"
    android:onClick="send"
    android:text="點我一下 有驚喜(嚇) 。。。"
    android:layout_width="match_parent"
    android:layout_height="wrap_content" />
</LinearLayout>

/layout/cell.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
  android:id="@+id/cell"
  xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:orientation="vertical">
  <ImageView
    android:layout_width="match_parent"
    android:layout_height="0dp"
    android:layout_weight="9"
    android:src="@drawable/wechat"
    android:scaleType="fitXY"/>
  <Button
    android:id="@+id/button01"
    android:layout_width="match_parent"
    android:layout_height="0dp"
    android:layout_weight="1"
    android:background="#ffffffff"
    android:text="Close"
    android:textSize="15dp"/>
</LinearLayout>

更多關于Android相關內容感興趣的讀者可查看本站專題:《Android開發入門與進階教程》、《Android調試技巧與常見問題解決方法匯總》、《Android基本組件用法總結》、《Android視圖View技巧總結》、《Android布局layout技巧總結》及《Android控件用法總結》

希望本文所述對大家Android程序設計有所幫助。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

镇赉县| 正阳县| 盐津县| 治多县| 呈贡县| 同江市| 噶尔县| 铁力市| 拉萨市| 嫩江县| 诸城市| 渭南市| 遵义市| 墨竹工卡县| 通辽市| 响水县| 辽中县| 金湖县| 晋城| 永宁县| 舟曲县| 尖扎县| 富源县| 嘉禾县| 牡丹江市| 乌兰察布市| 青阳县| 阿克| 监利县| 东辽县| 九寨沟县| 柘荣县| 宜川县| 淳安县| 长沙县| 苗栗县| 肇州县| 商丘市| 崇信县| 石林| 台北市|