矽谷商城第二版2--首頁模塊

来源:http://www.cnblogs.com/ganchuanpu/archive/2017/05/15/6854577.html
-Advertisement-
Play Games

1.fragment_home.xml 2.RecyclerView中六種item類型: 橫幅廣告 頻道 活動 秒殺 推薦 熱賣 3.橫幅廣告 Banner實現輪播 4.秒殺 HomeRecyclerViewAdapter中 seckill_item.xml SeckillViewHolder 採用 ...


1.fragment_home.xml

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".home.fragment.HomeFragment">

    <include
        android:id="@+id/titlebar"
        layout="@layout/titlebar" />

    <android.support.v7.widget.RecyclerView
        android:id="@+id/rv_home"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_below="@id/titlebar" />

    <ImageButton
        android:id="@+id/ib_top"
        android:layout_width="40dp"
        android:layout_height="40dp"
        android:layout_alignParentBottom="true"
        android:layout_alignParentRight="true"
        android:layout_marginBottom="20dp"
        android:layout_marginRight="20dp"
        android:background="@drawable/top_btn"
        android:visibility="gone" />
</RelativeLayout>

2.RecyclerView中六種item類型:

  橫幅廣告  頻道 活動 秒殺 推薦 熱賣

3.橫幅廣告 

  Banner實現輪播

4.秒殺

HomeRecyclerViewAdapter中

public RecyclerView.ViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {
    .....
    } else if (viewType == SECKILL) {
        return new SeckillViewHolder(mLayoutInflater.inflate(R.layout.seckill_item, null), mContext);
    }
}

seckill_item.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="380dp"
    android:layout_height="180dp"
    android:background="#fff"
    android:orientation="vertical"
    android:padding="10dp">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content">

        <ImageView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:src="@drawable/home_arrow_left_flash" />

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginLeft="10dp"
            android:text="今日閃購 距·結束"
            android:textColor="#000" />

        <TextView
            android:id="@+id/tv_time_seckill"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginLeft="10dp"
            android:background="@drawable/time_shape"
            android:padding="2dp"
            android:text="00:00:00"
            android:textColor="#fff" />

        <TextView
            android:id="@+id/tv_more_seckill"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:drawablePadding="5dp"
            android:drawableRight="@drawable/home_arrow_right"
            android:gravity="end"
            android:text="查看更多" />
    </LinearLayout>

    <android.support.v7.widget.RecyclerView
        android:id="@+id/rv_seckill"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" />
</LinearLayout>

  

SeckillViewHolder  

class SeckillViewHolder extends RecyclerView.ViewHolder {
    private TextView tvMore;
    private RecyclerView recyclerView;
    public Context mContext;

    public SeckillViewHolder(View itemView, Context mContext) {
        super(itemView);
        tvTime = (TextView) itemView.findViewById(R.id.tv_time_seckill);
        tvMore = (TextView) itemView.findViewById(R.id.tv_more_seckill);
        recyclerView = (RecyclerView) itemView.findViewById(R.id.rv_seckill);
        this.mContext = mContext;
    }


    public void setData(final ResultBean.SeckillInfoBean data) {
        //設置時間
        if (isFirst) {
//                dt = (int) (Integer.parseInt(data.getEnd_time()) - System.currentTimeMillis());
            dt = (int) (Integer.parseInt(data.getEnd_time()) - (Integer.parseInt(data.getStart_time())));
            isFirst = false;
        }

        //設置RecyclerView
        recyclerView.setLayoutManager(new LinearLayoutManager(mContext, LinearLayoutManager.HORIZONTAL, false));
        SeckillRecyclerViewAdapter adapter = new SeckillRecyclerViewAdapter(mContext, data);
        recyclerView.setAdapter(adapter);

        //倒計時
        handler.sendEmptyMessageDelayed(0, 1000);

        //點擊事件
        adapter.setOnSeckillRecyclerView(new SeckillRecyclerViewAdapter.OnSeckillRecyclerView() {
            @Override
            public void onClick(int position) {
                ResultBean.SeckillInfoBean.ListBean listBean = data.getList().get(position);
                String name = listBean.getName();
                String cover_price = listBean.getCover_price();
                String figure = listBean.getFigure();
                String product_id = listBean.getProduct_id();
                GoodsBean goodsBean = new GoodsBean(name, cover_price, figure, product_id);
//
                Intent intent = new Intent(mContext, GoodsInfoActivity.class);
                intent.putExtra(GOODS_BEAN, goodsBean);
                mContext.startActivity(intent);

                // Toast.makeText(mContext, "position:" + position, Toast.LENGTH_SHORT).show();
            }
        });

    }
}

  

private boolean isFirst = true;
    private TextView tvTime;
    private int dt;
    private Handler handler = new Handler() {
        @Override
        public void handleMessage(Message msg) {
            if (msg.what == 0) {
                dt = dt - 1000;
                SimpleDateFormat sd = new SimpleDateFormat("HH:mm:ss");
                tvTime.setText(sd.format(new Date(dt)));

                handler.removeMessages(0);
                handler.sendEmptyMessageDelayed(0, 1000);
                if (dt == 0) {
                    handler.removeMessages(0);
                }
            }

        }
    };

採用CountdownView實現秒殺倒計時的效果

 

 

github:https://github.com/ganchuanpu/Shopping

 


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

-Advertisement-
Play Games
更多相關文章
  • 記得第一次接觸xss這個概念是在高中,那個時候和一個好基友通過黑客X檔案和黑客手冊。第一次接觸到了除了游戲以外的電腦知識,然後知道了,原來電腦除了玩游戲還可以搞這些,從此兩人一發不可收拾的愛上了玩黑這方面的東西。 現在想起來,高中時期是在08年左右,那個時候的網路安全環境還蠻差。那個時候沒什麼電腦 ...
  • 要實現手機端橫向滑動效果並不難,瞭解實現的原理及業務邏輯就很容易實現。原理:touchstart(手指按下瞬間獲取相對於頁面的位置)——》touchmove(手指移動多少,元素相應移動多少)。 接下來講講實現邏輯: 其實就是手指拖動列表向哪個方向移動多少像素,並設置左右拖動的邊界值。 附上代碼及註釋 ...
  • 如果你是一個人在自學前端開發,或者是對前端開發有比較濃厚的興趣正想踏入前端領域,只要你在前端自學路上遇到了自己無法解決的技術難題,那麼儘管將你的疑惑交給我的小伙伴兒們吧,我們都是一群在前端自學路上摸爬滾打的有志青年,希望你可以來和我們共同交流。同時也希望你能獻出自己的一份力,幫助我的小伙伴兒們解決他 ...
  • 概述 面向過程與面向對象面向過程:專註於如何去解決一個問題的過程,編程特點是用一個個函數去實現過程操作,沒有類與對象的概念面向對象:專註於有哪一個對象實體去解決這個問題,編程特點是:出現了一個個的類,由類去生成對象。面向對象的三大特征:繼承,封裝,多態 對象和類的概念 類是抽象的,對象是具體的(類是 ...
  • 一、元素分類 在CSS中,html中的標簽元素大體被分為三種不同的類型:塊狀元素、內聯元素(又叫行內元素)和內聯塊狀元素。 常用的塊狀元素有: <div>、<p>、<h1>...<h6>、<ol>、<ul>、<dl>、<table>、<address>、<blockquote> 、<form> 常用 ...
  • 一、iOS中的沙盒機制 · iOS應用程式只能對自己創建的文件系統讀取文件,這個獨立、封閉、安全的空間,叫做沙盒。它一般存放著程式包文件(可執行文件)、圖片、音頻、視頻、plist文件、sqlite資料庫以及其他文件。 · 每個應用程式都有自己的獨立的存儲空間(沙盒) · 一般來說應用程式之間是不可 ...
  • 1、採用TabLayout實現標題的切換; 2、採用OpenDanmaku實現彈幕功能 ...
  • 1、採用SegmentTabLayout實現標簽和分類切換 fragment_type.xml 2.分類Fragment fragment_list.xml 右邊的:1、整體數據展示採用仿京東的分類頁面; 2、熱賣類型佈局橫向滾動採用HorizontalScrollView; 熱賣:item_hot ...
一周排行
    -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.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...