簡單介紹

這個demo寫的是仿京東的側(cè)滑篩選頁面,點擊進入篩選后進入二級篩選,兩次側(cè)滑的篩選,還包括ListView+CheckBox滑動沖突,ListView+ GridView顯示一行問題解決,接口回調(diào)傳遞數(shù)據(jù)等
效果圖


簡單得代碼介紹
1.首頁側(cè)滑用的是安卓官方V4包中的DrawerLayout
<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true">
<FrameLayout
android:id="@+id/main_content"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true">
<TextView
android:id="@+id/screenTv"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center|top"
android:layout_marginTop="200dp"
android:text="仿京東篩選"
android:textSize="20sp" />
</FrameLayout>
<LinearLayout
android:id="@+id/nav_view"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="end"
android:fitsSystemWindows="true"
android:orientation="vertical" />
</android.support.v4.widget.DrawerLayout>
網(wǎng)頁標(biāo)題:Android仿京東側(cè)滑篩選實例代碼-創(chuàng)新互聯(lián)
新聞來源:http://chinadenli.net/article40/gcgeo.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站策劃、外貿(mào)網(wǎng)站建設(shè)、營銷型網(wǎng)站建設(shè)、響應(yīng)式網(wǎng)站、定制網(wǎng)站、手機網(wǎng)站建設(shè)
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容