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

溫馨提示×

溫馨提示×

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

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

android如何實現仿京東商品屬性篩選功能

發布時間:2021-06-28 09:41:33 來源:億速云 閱讀:178 作者:小新 欄目:移動開發

這篇文章將為大家詳細講解有關android如何實現仿京東商品屬性篩選功能,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。

篩選和屬性選擇是目前非常常用的功能模塊;幾乎所有的APP中都會使用;

android如何實現仿京東商品屬性篩選功能

點擊篩選按鈕會彈出一個自己封裝好的popupWindow,實用方法非常簡單;兩行代碼直接顯示;(當然初始化數據除外)

這里和以前用到的流式布局有些不一樣:流式布局

以前使用的是單個分類,而且也沒有在項目中大量實用;這個篩選功能除了數據外幾乎都是從項目中Copy出來的;

整個popupWindow布局就是一個自定義的ListView,這個自定義的listview主要是控制listview的高度;

如果數據少的話就是自適應,如果數據多了就限制高度為屏幕的一半;

自定義的ListView:

public class CustomHeightListView extends ListView { 
 
  private Context mContext; 
 
  public CustomHeightListView(Context context) { 
    this(context, null); 
  } 
 
  public CustomHeightListView(Context context, AttributeSet attrs) { 
    this(context, attrs, 0); 
  } 
 
  public CustomHeightListView(Context context, AttributeSet attrs, int defStyleAttr) { 
    super(context, attrs, defStyleAttr); 
    init(context); 
  } 
 
  private void init(Context context) { 
    mContext = context; 
  } 
 
  @Override 
  protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) { 
    try { 
      //最大高度顯示為屏幕內容高度的一半 
      Display display = ((Activity) mContext).getWindowManager().getDefaultDisplay(); 
      DisplayMetrics d = new DisplayMetrics(); 
      display.getMetrics(d); 
      //設置控件高度不能超過屏幕高度一半(d.heightPixels / 2,下面有清空按鈕所以再減200,也可隨意換成自己想要的高度) 
      heightMeasureSpec = MeasureSpec.makeMeasureSpec(d.heightPixels / 2 - 200, MeasureSpec.AT_MOST); 
    } catch (Exception e) { 
      e.printStackTrace(); 
    } 
    //重新計算控件高、寬 
    super.onMeasure(widthMeasureSpec, heightMeasureSpec); 
  } 
}

ListView中每個item是一個流式布局:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
  android:layout_width="match_parent" 
  android:layout_height="wrap_content" 
  android:orientation="vertical"> 
 
  <TextView 
    android:id="@+id/tv_type_name" 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content" /> 
 
  <com.example.zheng.flowlayoutdemo.view.SkuFlowLayout 
    android:id="@+id/layout_property" 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content" /> 
   
</LinearLayout>

整個popupwindow都封裝在一個類中,創建的時候只需把數據源傳遞過去即可,實用的時候直接show就可以了

flowPopWindow = new FlowPopWindow(MainActivity.this, dictList); 
    flowPopWindow.showAsDropDown(ivBack);

當點擊確定的時候直接設置一個監聽即可:

flowPopWindow.setOnConfirmClickListener(new FlowPopWindow.OnConfirmClickListener() { 
     @Override 
     public void onConfirmClick() { 
      StringBuilder sb = new StringBuilder(); 
      for (FiltrateBean fb : dictList) { 
       List<FiltrateBean.Children> cdList = fb.getChildren(); 
       for (int x = 0; x < cdList.size(); x++) { 
        FiltrateBean.Children children = cdList.get(x); 
        if (children.isSelected()) 
         sb.append(fb.getTypeName() + ":" + children.getValue() + ";"); 
       } 
      } 
      if (!TextUtils.isEmpty(sb.toString())) 
       Toast.makeText(MainActivity.this, sb.toString(), Toast.LENGTH_LONG).show(); 
     } 
    }

關于“android如何實現仿京東商品屬性篩選功能”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。

向AI問一下細節

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

AI

朝阳县| 临江市| 达孜县| 宣汉县| 南华县| 策勒县| 江津市| 鹤岗市| 康定县| 图们市| 包头市| 德格县| 西乌珠穆沁旗| 中江县| 景德镇市| 龙泉市| 治多县| 靖江市| 湘潭市| 临沧市| 靖边县| 海门市| 怀仁县| 塘沽区| 宣武区| 观塘区| 高阳县| 海林市| 长春市| 凤翔县| 武胜县| 宁海县| 石林| 甘泉县| 景德镇市| 安国市| 平南县| 兴化市| 嵩明县| 芜湖市| 平果县|