中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

Android如何仿高德地圖實現可拉伸的BottomSheet

發布時間:2022-04-07 17:25:34 來源:億速云 閱讀:785 作者:iii 欄目:編程語言

這篇文章主要介紹了Android如何仿高德地圖實現可拉伸的BottomSheet的相關知識,內容詳細易懂,操作簡單快捷,具有一定借鑒價值,相信大家閱讀完這篇Android如何仿高德地圖實現可拉伸的BottomSheet文章都會有所收獲,下面我們一起來看看吧。

效果圖:

Android如何仿高德地圖實現可拉伸的BottomSheet

而我看到這個效果圖,覺得這個就是一個slidingpanel,但是翻閱了一些發現用google自帶的bottomsheet實現更方便

什么是BottomSheet?

Bottom Sheet是Design Support Library23.2 版本引入的一個類似于對話框的控件,可以暫且叫做底部彈出框吧。 Bottom Sheet中的內容默認是隱藏起來的,只顯示很小一部分,可以通過在代碼中設置其狀態或者手勢操作將其完全展開,或者完全隱藏,或者部分隱藏。

怎么使用?

添加依賴

implemention 'com.android.support:design:25.3.1'

布局文件

<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
 xmlns:app="http://schemas.android.com/apk/res-auto"
 android:id="@+id/cl_chouti"
 android:layout_width="match_parent"
 android:layout_height="match_parent">

 <FrameLayout
  android:layout_width="match_parent"
  android:layout_height="match_parent">

  <com.amap.api.maps.MapView
   android:id="@+id/map_view"
   android:layout_width="match_parent"
   android:layout_height="match_parent" />

  <RelativeLayout
   android:layout_width="wrap_content"
   android:layout_height="wrap_content"
   android:layout_gravity="center">

   <ImageView
    android:id="@+id/mark"
    android:layout_width="30dp"
    android:layout_height="30dp"
    android:src="@drawable/poi_marker_pressed" />
   <!--為了更好與定位之后的紅點適配此imagview只是適配用沒有意義-->
   <ImageView
    android:layout_width="30dp"
    android:layout_height="40dp"
    android:layout_below="@+id/mark" />
  </RelativeLayout>
 </FrameLayout>

 <RelativeLayout
  android:id="@+id/bottom_sheet"
  android:layout_width="match_parent"
  android:layout_height="wrap_content"
  android:layout_alignParentBottom="true"
  app:behavior_hideable="true"
  app:behavior_peekHeight="160dp"
  app:layout_behavior="@string/bottom_sheet_behavior">

  <include layout="@layout/layout_bottom_sheet" />
 </RelativeLayout>
</android.support.design.widget.CoordinatorLayout>

 layout_bottom_sheet.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="wrap_content"
 android:background="#ffffff"
 android:orientation="vertical">
 <TextView
  android:id="@+id/tv_tishi"
  android:layout_gravity="center_horizontal"
  android:layout_marginTop="40dp"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:text="附近熱點"
  android:textSize="10sp"/>
 <android.support.v7.widget.RecyclerView
  android:id="@+id/recyclerview"
  android:layout_width="match_parent"
  android:layout_height="wrap_content"/>
</LinearLayout>

activity中的使用

 //底部抽屜欄展示地址
  bottomSheet = findViewById(R.id.bottom_sheet);
  behavior = BottomSheetBehavior.from(bottomSheet);

  behavior.setBottomSheetCallback(new BottomSheetBehavior.BottomSheetCallback() {
   @Override
   public void onStateChanged(@NonNull View bottomSheet, @BottomSheetBehavior.State int newState) {
    String state = "null";
    switch (newState) {
     case 1:
      state = "STATE_DRAGGING";//過渡狀態此時用戶正在向上或者向下拖動bottom sheet
      break;
     case 2:
      state = "STATE_SETTLING"; // 視圖從脫離手指自由滑動到最終停下的這一小段時間
      break;
     case 3:
      state = "STATE_EXPANDED"; //處于完全展開的狀態

      break;
     case 4:
      state = "STATE_COLLAPSED"; //默認的折疊狀態
      break;
     case 5:
      state = "STATE_HIDDEN"; //下滑動完全隱藏 bottom sheet
      break;
    }

   }

   @Override
   public void onSlide(@NonNull View bottomSheet, float slideOffset) {
//    Log.d("BottomSheetDemo", "slideOffset:" + slideOffset);
   }
  });

注意分析

CoordinatorLayout 是Meterial Design中的一個新控件,通過behavior用來協調其他組件, 實現聯動,因此父布局必須是CoordinatorLayout 。

注意到布局中,RelativeLayout中的app:layout_behavior=”@string/bottom_sheet_behavior”屬性,點進去可以看到,這個屬性實際上是設置系統默認實現的BottomSheet的behavior。原則上來說,只要是可以滾動的View,在加上了這個屬性后,都可以作為BottomSheet來使用,建議使用NestedScrollView或者RecyclerView。

關于“Android如何仿高德地圖實現可拉伸的BottomSheet”這篇文章的內容就介紹到這里,感謝各位的閱讀!相信大家對“Android如何仿高德地圖實現可拉伸的BottomSheet”知識都有一定的了解,大家如果還想學習更多知識,歡迎關注億速云行業資訊頻道。

向AI問一下細節

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

AI

休宁县| 博爱县| 保亭| 仁化县| 宿迁市| 女性| 开封县| 阜平县| 高碑店市| 龙山县| 多伦县| 大足县| 天镇县| 江安县| 阿瓦提县| 思南县| 义马市| 英山县| 嘉义市| 兴隆县| 峡江县| 奎屯市| 太仆寺旗| 桃园县| 牙克石市| 资阳市| 常山县| 昌图县| 洛南县| 玉林市| 伊金霍洛旗| 香港| 武汉市| 海盐县| 昭苏县| 商城县| 喀什市| 鄄城县| 嘉义市| 永济市| 项城市|