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

溫馨提示×

溫馨提示×

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

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

Android Popupwindow彈出窗口的簡單使用方法

發布時間:2020-09-28 19:45:20 來源:腳本之家 閱讀:195 作者:yxx_bk 欄目:移動開發

本文實例為大家分享了Android Popupwindow彈出窗口的具體代碼,供大家參考,具體內容如下

代碼很簡單,沒有和別的控件連用。布局自己隨意定義,我的這個是最基礎的,就直接上代碼啦!

在MainActivity里

import android.content.Context;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup.LayoutParams;
import android.widget.Button;
import android.widget.PopupWindow;
import android.widget.Toast;

public class MainActivity extends AppCompatActivity {
  private Context mContext = null;

  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    mContext = this;

    Button button = (Button) findViewById(R.id.but);
    button.setOnClickListener(newView.OnClickListener() {

      @Override
      public void onClick(View view) {

        showPopupWindow(view);
      }
    });
  }

  private void showPopupWindow(View view) {

    // 一個自定義的布局,作為顯示的內容
    View contentView =LayoutInflater.from(mContext).inflate(
        R.layout.popupwindow, null);
    // 設置按鈕的點擊事件
    Button button = (Button) contentView.findViewById(R.id.button );
      button.setOnClickListener(new View.OnClickListener() {

          @Override
          public void onClick(View v) {
            Toast.makeText(mContext, "button is pressed",
                Toast.LENGTH_SHORT).show();
          }
    });

    final PopupWindow popupWindow = new PopupWindow(contentView,  LayoutParams.WRAP_CONTENT,LayoutParams.WRAP_CONTENT, true);

    // 如果不設置PopupWindow的背景,無論是點擊外部區域還是Back鍵都無法dismiss彈框
    // 我覺得這里是API的一個bug
    popupWindow.setBackgroundDrawable(getResources().getDrawable(R.mipmap.ic_launcher));

    // 設置好參數之后再show
    popupWindow.showAsDropDown(view);
  }
}

在主布局里

 <Button
    android:id="@+id/but"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Hello World!" />

在popupwindow布局里

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  android:orientation="vertical" android:layout_width="match_parent"
  android:layout_height="match_parent"
  android:background="#ffff00">
<TextView
  android:id="@+id/ttt"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:textSize="20sp"
  android:text="彈出窗口"/>
  <Button
    android:id="@+id/button"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content" />
</LinearLayout>

效果圖

Android Popupwindow彈出窗口的簡單使用方法

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。

向AI問一下細節

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

AI

堆龙德庆县| 祁东县| 荆门市| 玉树县| 健康| 乌拉特前旗| 六盘水市| 肥乡县| 正蓝旗| 枣强县| 九江县| 邮箱| 周口市| 新巴尔虎左旗| 文昌市| 乌兰浩特市| 南澳县| 德兴市| 墨竹工卡县| 宁安市| 泸溪县| 湖南省| 老河口市| 华阴市| 额敏县| 司法| 乌鲁木齐市| 鞍山市| 得荣县| 册亨县| 巴东县| 健康| 静乐县| 托克逊县| 桃园市| 洛宁县| 台北县| 闻喜县| 桑日县| 宜宾县| 丰原市|