91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

怎么在Android中使用BottomSheetDialog實現一個底部對話框

發布時間:2021-04-07 17:30:41 來源:億速云 閱讀:226 作者:Leah 欄目:移動開發

今天就跟大家聊聊有關怎么在Android中使用BottomSheetDialog實現一個底部對話框,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結了以下內容,希望大家根據這篇文章可以有所收獲。

使用方法

BottomSheetDialog來自design兼容包,使用需要添加依賴。android studio 添加依賴如下:

dependencies {
  compile ‘com.android.support:design:23.2.0+‘
}

1.XML中添加布局文件

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="horizontal"
    android:weightSum="2">

    <RelativeLayout
      android:layout_width="match_parent"
      android:layout_height="wrap_content"
      android:layout_weight="1">

      <ImageView
        android:id="@+id/image_man"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="?android:selectableItemBackground"
        android:gravity="center"
        android:padding="10dp"
        android:src="@drawable/man"/>
    </RelativeLayout>

    <RelativeLayout
      android:layout_width="match_parent"
      android:layout_height="wrap_content"
      android:layout_weight="1">

      <ImageView
        android:id="@+id/image_women"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="?android:selectableItemBackground"
        android:gravity="center"
        android:padding="10dp"
        android:src="@drawable/women"/>
    </RelativeLayout>

  </LinearLayout>

2.在代碼中使用

 @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_play_bottom_sheet_dialog);
    showContentView();
    bindingView.bottomsheet.textviewTitle.setText("BottomSheetDialog");
    bindingView.bottomsheet.toolbarBack.setOnClickListener(this);
    bindingView.btnBsd1.setOnClickListener(this);
    initView();
  }

  private void initView() {
    View view = View.inflate(this, R.layout.bottom_dialog, null);
    ImageView man = (ImageView) view.findViewById(R.id.image_man);
    ImageView women = (ImageView) view.findViewById(R.id.image_women);
    man.setOnClickListener(this);
    women.setOnClickListener(this);

    bsd1 = new BottomSheetDialog(this);
    bsd1.setContentView(view);

  }

  @Override
  public void onClick(View v) {
    switch (v.getId()) {
      case R.id.toolbar_back:
        finish();
        break;
      case R.id.btn_bsd1:
        bsd1.show();
        break;
      case R.id.image_man:
        ToastUtil.show("男");
        bsd1.dismiss();
        break;
      case R.id.image_women:
        ToastUtil.show("女");
        bsd1.dismiss();
        break;
    }
  }

看完上述內容,你們對怎么在Android中使用BottomSheetDialog實現一個底部對話框有進一步的了解嗎?如果還想了解更多知識或者相關內容,請關注億速云行業資訊頻道,感謝大家的支持。

向AI問一下細節

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

AI

平潭县| 探索| 灌南县| 永定县| 和龙市| 龙山县| 禹城市| 隆化县| 嘉义县| 油尖旺区| 衡东县| 宁陵县| 滦平县| 塔城市| 铁岭市| 祁连县| 阜康市| 安宁市| 北川| 宁河县| 沁阳市| 鄂州市| 新竹市| 长丰县| 颍上县| 灌阳县| 乐昌市| 中方县| 高台县| 堆龙德庆县| 黄大仙区| 布尔津县| 富川| 新民市| 楚雄市| 洛扎县| 宜昌市| 怀来县| 栾川县| 浑源县| 石渠县|