ListView添加頭佈局和腳佈局

来源:http://www.cnblogs.com/shen-hua/archive/2016/11/20/6081712.html
-Advertisement-
Play Games

ListView添加頭佈局和腳佈局 之前學習喜馬拉雅的時候做的一個小Demo,貼出來,供大家學習參考; 如果我們當前的頁面有多個介面、多種佈局的話,我們一般的選擇無非就是1、多佈局;2、各種複雜滑動佈局外面套一層ScrollView(好low);3、頭佈局腳佈局。有的時候我們用多佈局並不能很好的實現 ...


 ListView添加頭佈局和腳佈局

 

之前學習喜馬拉雅的時候做的一個小Demo,貼出來,供大家學習參考;

如果我們當前的頁面有多個介面、多種佈局的話,我們一般的選擇無非就是1、多佈局;2、各種複雜滑動佈局外面套一層ScrollView(好low);3、頭佈局腳佈局。有的時候我們用多佈局並不能很好的實現,所以頭佈局跟腳佈局就是我們最好的選擇了;學過了ListView的話原理很簡單,沒啥理解的東西,直接貼代碼了:

效果圖:

                 

正文部分佈局:

fragment_classify.xml

<?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">
    <ListView
        android:id="@+id/teach_classify_listview"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:listSelector="#00000000"/>
</LinearLayout>

classify_item.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="match_parent"
    android:orientation="vertical">

    <View
        android:id="@+id/teach_classify_item_divider"
        android:background="#f3fdeeee"
        android:layout_width="match_parent"
        android:layout_height="10dp"/>

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


        <RelativeLayout
            android:id="@+id/teach_classify_left"
            android:layout_width="0dp"
            android:background="@drawable/item_pressed"
            android:layout_height="match_parent"
            android:layout_marginLeft="15dp"
            android:layout_weight="1">

            <ImageView
                android:id="@+id/teach_classify_item_iamge01"
                android:layout_width="30dp"
                android:layout_height="30dp"
                android:layout_centerVertical="true"
                android:src="@mipmap/ic_launcher" />

            <TextView
                android:id="@+id/teach_classify_item_text01"
                android:layout_width="match_parent"
                android:layout_height="45dp"
                android:layout_centerVertical="true"
                android:layout_marginLeft="60dp"
                android:gravity="center_vertical"
                android:text="@string/app_name" />

        </RelativeLayout>

        <View
            android:layout_width="1dp"
            android:layout_height="match_parent"
            android:background="#efe6e6" />

        <RelativeLayout
            android:id="@+id/teach_classify_right"
            android:layout_width="0dp"
            android:background="@drawable/item_pressed"
            android:layout_height="match_parent"
            android:layout_marginLeft="15dp"
            android:layout_weight="1">

            <ImageView
                android:id="@+id/teach_classify_item_iamge02"
                android:layout_width="30dp"
                android:layout_height="30dp"
                android:layout_centerVertical="true"
                android:src="@mipmap/ic_launcher" />

            <TextView
                android:id="@+id/teach_classify_item_text02"
                android:layout_width="match_parent"
                android:layout_height="45dp"
                android:layout_centerVertical="true"
                android:layout_marginLeft="60dp"
                android:gravity="center_vertical"
                android:text="@string/app_name" />

        </RelativeLayout>
    </LinearLayout>

</LinearLayout>

頭佈局:

fragment_classify_header.xml

<?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">
    <ImageView
        android:id="@+id/teach_classify_lv_header"
        android:src="@mipmap/ic_launcher"
        android:layout_width="match_parent"
        android:layout_height="180dp" />
</LinearLayout>

腳佈局:

fragment_classify_bottom.xml

<?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">
    <ImageView
        android:id="@+id/teach_classify_bottom"
        android:src="@mipmap/ic_launcher"
        android:layout_width="match_parent"
        android:layout_height="160dp" />
</LinearLayout> 

主頁面:

public class ClassifyFragment extends BaseFragment implements ClassifyAdapter.OnClickItemListener{
    public static final String TAG = ClassifyFragment.class.getSimpleName();
    private ListView mListView;
    private ClassifyAdapter adapter;
    private ImageView mHeaderImage;
    private ImageView mBottomImage;

    @Nullable
    @Override
    public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
        layout = inflater.inflate(R.layout.fragment_classify, container, false);
        return layout;
    }

    @Override
    public void onActivityCreated(@Nullable Bundle savedInstanceState) {
        super.onActivityCreated(savedInstanceState);
        initView();
        setupView();
    }
    /**
     * Header的添加最好放在setAdapter之前,在Android4.4之前,Header添加必須放在設置Adapter之前
     */
    private void initView() {
        mListView = ((ListView) layout.findViewById(R.id.teach_classify_listview));
        //header
        View headerView = LayoutInflater.from(getActivity()).inflate(R.layout.fragment_classify_header,null);
        mHeaderImage = ((ImageView) headerView.findViewById(R.id.teach_classify_lv_header));
        //可以添加多個HeaderView
        mListView.addHeaderView(headerView);
        //bottom
        View bottomView = LayoutInflater.from(getActivity()).inflate(R.layout.fragment_classify_bottom,null);
        mBottomImage = ((ImageView) bottomView.findViewById(R.id.teach_classify_bottom));
        mListView.addFooterView(bottomView);
        adapter = new ClassifyAdapter(getActivity(), null);
        mListView.setAdapter(adapter);
    }

    /**
     * 網路請求
     */
    private void setupView() {
        HttpUtil.getStringAsync(HttpConstant.CLASSIFY_URL, new HttpUtil.RequestCallBack() {
            @Override
            public void onFailure() {
                Log.e(TAG, "onFailure: ");
            }

            @Override
            public void onSuccess(String result) {
                Log.e(TAG, "onSuccess: " + result);
                Gson gson = new Gson();
                ClassifyList classifyList = gson.fromJson(result, ClassifyList.class);
                List<Classify> list = classifyList.getList();
                //更新適配器
                adapter.updateRes(list);
                //更新Header
                ImageLoader.display(mHeaderImage,list.get(0).getCoverPath());
            }

            @Override
            public void onFinish() {
                Log.e(TAG, "onFinish: ");
            }
        });
        String URL_BOTTOM="http://adse.ximalaya.com/ting?device=android&name=cata_index_banner&network=wifi&operator=0&version=4.3.98";
        HttpUtil.getStringAsync(URL_BOTTOM, new HttpUtil.RequestCallBack() {
            @Override
            public void onFailure() {
            }

            @Override
            public void onSuccess(String result) {
                Gson gson = new Gson();
                ClassifyBottomList classifyBottomList = gson.fromJson(result, ClassifyBottomList.class);
                ImageLoader.display(mBottomImage, classifyBottomList.getData().get(0).getCover());
            }

            @Override
            public void onFinish() {
            }
        });
    }
    @Override
    public void onOnclickItem(int position) {
        Log.e(TAG, "onOnclickItem:------------- "+position );
    }
}

適配器:

public class ClassifyAdapter extends BaseAdapter implements View.OnClickListener {

    private static final String TAG = ClassifyAdapter.class.getSimpleName();
    private List<Classify> data;
    private LayoutInflater inflater;
    private OnClickItemListener listener;//持有介面

    public void setListener(OnClickItemListener listener){
            this.listener=listener;
    }

    public ClassifyAdapter(Context context,List<Classify>data) {
        inflater= (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
        if (data!=null) {
            this.data=data;
        }
        else {
            this.data=new ArrayList<>();
        }
    }

    public void updateRes(List<Classify> data){
        if (data!=null) {
            this.data.clear();
            this.data.addAll(data);
            notifyDataSetChanged();
        }
    }

    @Override
    public int getCount() {
        int count=0;
        if (data!=null) {
            count=(data.size()-1)/2;
        }
        return count;
    }

    @Override
    public Classify getItem(int position) {
        return data.get(position);
    }

    @Override
    public long getItemId(int position) {
        return position;
    }

    @Override
    public View getView(int position, View convertView, ViewGroup parent) {
        ViewHolder holder=null;
        if (convertView==null) {
            convertView=inflater.inflate(R.layout.classify_item,parent,false);
            holder=new ViewHolder();
            holder.itemIamge01= (ImageView) convertView.findViewById(R.id.teach_classify_item_iamge01);
            holder.itemImage02= (ImageView) convertView.findViewById(R.id.teach_classify_item_iamge02);
            holder.itemText01= (TextView) convertView.findViewById(R.id.teach_classify_item_text01);
            holder.itemText02= (TextView) convertView.findViewById(R.id.teach_classify_item_text02);
            holder.topDivider=convertView.findViewById(R.id.teach_classify_item_divider);
            holder.leftItem=convertView.findViewById(R.id.teach_classify_left);
            holder.rightItem=convertView.findViewById(R.id.teach_classify_right);
            convertView.setTag(holder);
        }
        else {
            holder= (ViewHolder) convertView.getTag();
        }
        //根據條件判斷是否顯示分割線
        if (position%3==0&&position!=0) {
            holder.topDivider.setVisibility(View.VISIBLE);
        }else {
            holder.topDivider.setVisibility(View.GONE);
        }
        //載入數據
        holder.itemText01.setText(data.get(position*2+1).getTitle());
        holder.itemText02.setText(data.get(position*2+2).getTitle());
        //設置監聽
        holder.leftItem.setOnClickListener(this);
        holder.rightItem.setOnClickListener(this);
        //設置標記
        holder.leftItem.setTag(position*2+1);
        holder.rightItem.setTag(position*2+2);
        //載入圖片
        ImageLoader.display(holder.itemIamge01,data.get(position*2+1).getCoverPath());
        ImageLoader.display(holder.itemImage02,data.get(position*2+2).getCoverPath());
        return convertView;
    }

    @Override
    public void onClick(View v) {
        Integer position = (Integer) v.getTag();
        Log.e(TAG, "onClick: "+position );
        if (listener!=null) {
            listener.onOnclickItem(position);
        }

    }

    private static class ViewHolder{
        //左邊的圖片
        ImageView itemIamge01;
        //右邊的圖片
        ImageView itemImage02;
        //右邊
        TextView itemText01;
        TextView itemText02;

        //分割線
        View topDivider;
        //左右佈局
        View leftItem,rightItem;
    }

    public interface OnClickItemListener{
        void onOnclickItem(int position);
    }
}

 

 

 

model類:

public class Classify {

    private String title;
    private String coverPath;

    public String getTitle() {
        return title;
    }

    public void setTitle(String title) {
        this.title = title;
    }

    public String getCoverPath() {
        return coverPath;
    }

    public void setCoverPath(String coverPath) {
        this.coverPath = coverPath;
    }
}

 

public class ClassifyList {
    private List<Classify> list;

    public List<Classify> getList() {
        return list;
    }

    public void setList(List<Classify> list) {
        this.list = list;
    }
}

 

public class ClassifyBottom {
    private String cover;

    public String getCover() {
        return cover;
    }

    public void setCover(String cover) {
        this.cover = cover;
    }
}
public class ClassifyBottomList {
    private List<ClassifyBottom> data;

    public List<ClassifyBottom> getData() {
        return data;
    }

    public void setData(List<ClassifyBottom> data) {
        this.data = data;
    }
}

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 項目中經常需要底部彈出框,這裡我整理一下其中我用的比較順手的一個方式(底部彈出一個橫向滿屏的dialog)。 效果圖如下所示(只顯示關鍵部分): 步驟如下所示: 1.定義一個dialog的佈局(lay_share.xml) 1 <?xml version="1.0" encoding="utf-8" ...
  • 多線程學習 每一個iOS應用(進程)運行都會有一個主線程(UI線程),UI上的更新推薦在主線程中去完成。多線程本身並不複雜,難點在於多個線程在其生命周期的管理,如線程的執行順序、線程間的數據共用以及資源競爭等問題。 本文主要記錄開發中常用的3種多線程模式: NSThread NSOperation ...
  • 前言 學習本系列內容需要具備一定 HTML 開發基礎,沒有基礎的朋友可以先轉至 "HTML快速入門(一)" 學習 本人接觸 React Native 時間並不是特別長,所以對其中的內容和性質瞭解可能會有所偏差,在學習中如果有錯會及時修改內容,也歡迎萬能的朋友們批評指出,謝謝 文章第一版出自簡書,如果 ...
  • 就目前來說Retrofit2使用的已相當的廣泛,那麼我們先來瞭解下兩個問題: 1 . 什麼是Retrofit? Retrofit是針對於Android/Java的、基於okHttp的、一種輕量級且安全的、並使用註解方式的網路請求框架。 2 . 我們為什麼要使用Retrofit,它有哪些優勢? ... ...
  • 模擬器的位置: /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs 文檔安裝位置: /Applications/Xcode.app/Contents/Develope ...
  • 前言: 多年之前接觸過zxing實現二維碼,沒想到今日項目中再此使用竟然使用的還是zxing,百度之,竟是如此牛的玩意。 當然,項目中我們也許只會用到二維碼的掃描和生成兩個功能,所以不必下載完整的jar包,使用簡化版的即可,下文可見。 這篇文章講述:1、如果快速在項目中集成zxing,實現掃描和生成 ...
  • /** * 計算上次日期距離現在多久 * * @param lastTime 上次日期(需要和格式對應) * @param format1 上次日期格式 * @param currentTime 最近日期(需要和格式對應) * @param format2 最近日期格式 * * @return xx ...
  • 1:Masonry 2個或2個以上的控制項等間隔排序 使用方法很簡單,因為它是NSArray的類擴展: 實例: 2:YYLabel的簡單使用 3:appStore版本號檢測及更新實例 4:TCP協議中的三次握手和四次揮手(圖解) 註意:左右兩豎線是兩端不同的狀態,中間是傳遞 三次握手連接: 首先Cli ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...