




版權說明:本文檔由用戶提供并上傳,收益歸屬內容提供方,若內容存在侵權,請進行舉報或認領
文檔簡介
【移動應用開發(fā)技術】如何在android項目中里ListView隱藏底部View
這篇文章將為大家詳細講解有關如何在android項目中里ListView隱藏底部View,文章內容質量較高,因此在下分享給大家做個參考,希望大家閱讀完這篇文章后對相關知識有一定的了解。1。底部BottomView的內容如下,這個XML文件的內容是自定義的,根據(jù)各項目的內容需求來定義的,我例子中bottom_view.xml:<?xml
version="1.0"
encoding="UTF-8"?>
<LinearLayout
xmlns:android="/apk/res/android"
android:id="@+id/button_layout"
android:layout_width="fill_parent"
android:layout_height="50dp"
android:background="#cbcbcb"
android:gravity="center_vertical"
android:orientation="horizontal"
>
<Button
android:layout_height="40dp"
android:layout_width="wrap_content"
android:layout_weight="1"
android:text="價格"
/>
<Button
android:layout_height="40dp"
android:layout_width="wrap_content"
android:layout_weight="1"
android:text="好評"
/>
<Button
android:layout_height="40dp"
android:layout_width="wrap_content"
android:layout_weight="1"
android:text="篩選"
/>
</LinearLayout>2、main.xml如下<?xml
version="1.0"
encoding="utf-8"?>
<RelativeLayout
xmlns:android="/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<com.example.BottomFloatListView.BottomFloatListView
android:id="@+id/listView"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:fadingEdge="none"
/>
<include
android:id="@+id/bottombar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
layout="@layout/bottom_view"
>
</include>
</RelativeLayout>3、自定義ListView控件BottomFloatListViewpackage
com.example.BottomFloatListView;
import
android.content.Context;
import
android.os.Handler;
import
android.util.AttributeSet;
import
android.util.Log;
import
android.view.MotionEvent;
import
android.view.View;
import
android.view.ViewGroup;
import
android.view.animation.Animation;
import
android.view.animation.OvershootInterpolator;
import
android.view.animation.TranslateAnimation;
import
android.widget.*;
import
android.widget.AbsListView.OnScrollListener;
/**
*
底部View自動隱藏和消失listview(其他ListView可以繼承該類,如CtripBottomRefreshListView類等)
**/
public
class
BottomFloatListView
extends
ListView
implements
OnScrollListener
{
public
View
mBottomBar;
private
int
mCurrentScrollState;
private
boolean
bIsMoved
=
false;
private
boolean
bIsDown
=
false;
private
int
mDeltaY;
private
float
mMotionY;
private
int
oldFirstVisibleItem
=
0;
private
Handler
mHandler
=
new
Handler();
private
static
final
String
TAG
=
"BottomFloatListView";
public
BottomFloatListView(Context
context)
{
this(context,
null);
super.setOnScrollListener(this);
}
public
BottomFloatListView(Context
context,
AttributeSet
attrs)
{
this(context,
attrs,
0);
super.setOnScrollListener(this);
}
public
BottomFloatListView(Context
context,
AttributeSet
attrs,
int
defStyle)
{
super(context,
attrs,
defStyle);
super.setOnScrollListener(this);
}
@Override
public
void
setAdapter(ListAdapter
adapter)
{
super.setAdapter(adapter);
}
@Override
public
void
onScroll(AbsListView
view,
int
firstVisibleItem,
int
visibleItemCount,
int
totalItemCount)
{
showBottomViewOnBottom(visibleItemCount,
totalItemCount,
firstVisibleItem);
}
@Override
public
void
onScrollStateChanged(AbsListView
view,
int
scrollState)
{
hideBottomViewOnScrollStateChanged(view,
scrollState);
}
@Override
public
boolean
onTouchEvent(MotionEvent
ev)
{
float
y
=
ev.getY();
float
x
=
ev.getX();
Log.d("FloatListView",
"onTouchEvent"
+
""
+
x
+
""
+
y);
int
action
=
ev.getAction()
&
MotionEvent.ACTION_MASK;
switch
(action)
{
case
MotionEvent.ACTION_DOWN:
action_down(y);
break;
case
MotionEvent.ACTION_MOVE:
mDeltaY
=
(int)
(y
-
mMotionY);
bIsMoved
=
true;
//移動的時候,要移除掉顯示bottomView的消息
mHandler.removeCallbacks(showBottomBarRunnable);
//補齊action_down事件,因為有的時候,action_down
事件沒有執(zhí)行
action_down(y);
break;
case
MotionEvent.ACTION_UP:
bIsMoved
=
false;
bIsDown
=
false;
if
(!bIsMoved
&&
!bIsDown)
{
//
如果屏幕上什么沒做,則過2s之后要顯示bottomView
mHandler.postDelayed(showBottomBarRunnable,
2000);
}
if
(mDeltaY
<
0)
{
//下滑影藏
hideBottomBar();
}
else
{
//上滑顯示
showBottomBar();
}
bIsMoved
=
false;
break;
}
return
super.onTouchEvent(ev);
}
private
void
action_down(float
y){
mMotionY
=
y;
bIsDown
=
true;
Log.d(TAG,
"action
down
execed");
mHandler.removeCallbacks(showBottomBarRunnable);
}
/**
*
滑動到頂部時,要隱藏bottomView
*
@param
view
*
@param
scrollState
*/
private
void
hideBottomViewOnScrollStateChanged(AbsListView
view,
int
scrollState)
{
mCurrentScrollState
=
scrollState;
if(view!=null){
if
(view.getFirstVisiblePosition()
==
0
&&
scrollState
==
SCROLL_STATE_IDLE)
{
hideBottomBar();
Log.d(TAG,
"hide
bottom
view");
}
}
}
/**
*
顯示底部浮動欄
*/
public
void
showBottomBar()
{
if
(mBottomBar
!=
null
&&
mBottomBar.getVisibility()
==
View.GONE)
{
mBottomBar.setVisibility(View.INVISIBLE);
Animation
translateAnimation
=
new
TranslateAnimation(mBottomBar.getLeft(),
mBottomBar.getLeft(),30,
0);
translateAnimation.setDuration(300);
translateAnimation.setInterpolator(new
OvershootInterpolator(0.6f));
mBottomBar.startAnimation(translateAnimation);
translateAnimation.setAnimationListener(new
Animation.AnimationListener()
{
@Override
public
void
onAnimationStart(Animation
animation)
{
}
@Override
public
void
onAnimationRepeat(Animation
animation)
{
}
@Override
public
void
onAnimationEnd(Animation
animation)
{
mBottomBar.setVisibility(View.VISIBLE);
}
});
}
}
/**
*
隱藏浮動底部欄
*/
private
void
hideBottomBar()
{
if
(mBottomBar
!=
null
&&
mBottomBar.getVisibility()
==
View.VISIBLE)
{
Animation
translateAnimation
=
new
TranslateAnimation(mBottomBar.getLeft(),
mBottomBar.getLeft(),
0,
30);
translateAnimation.setDuration(300);
translateAnimation.setInterpolator(new
OvershootInterpolator(0.6f));
mBottomBar.startAnimation(translateAnimation);
translateAnimation.setAnimationListener(new
Animation.AnimationListener()
{
@Override
public
void
onAnimationStart(Animation
animation)
{
}
@Override
public
void
onAnimationRepeat(Animation
animation)
{
}
@Override
public
void
onAnimationEnd(Animation
animation)
{
mBottomBar.setVisibility(View.GONE);
}
});
}
}
/**
*
滑動到底部時直接顯示bottomView
*
@param
visibleItemCount
*
@param
totalItemCount
*
@param
firstVisibleItem
*/
private
void
showBottomViewOnBottom(int
visibleItemCount,
int
totalItemCount,
int
firstVisibleItem)
{
Log.d(TAG,
"visible
bottem
item
count:"
+
"firstVisibleItem:"
+
firstVisibleItem
+
"oldFirstVisibleItem:"
+
oldFirstVisibleItem
+
mBottomBar);
if(getLastVisiblePosition()
==
totalItemCount
-1
&&
mCurrentScrollState
!=
SCROLL_STATE_IDLE){
showBottomBar();
}
}
private
Runnable
showBottomBarRunnable
=
new
Runnable()
{
@Override
public
void
run()
{
showBottomBar();
}
};
/**
*
將需要隱藏顯示的view傳入
*
*
@param
bottomBar
*/
public
void
setBottomBar(ViewGroup
bottomBar)
{
this.mBottomBar
=
bottomBar;
}
}4、主界面測試的Activity,MainActivity代碼如下public
class
MainActivity
extends
Activity
{
private
BottomFloatListView
mBottomFloatListView;
@Override
溫馨提示
- 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內容里面會有圖紙預覽,若沒有圖紙預覽就沒有圖紙。
- 4. 未經(jīng)權益所有人同意不得將文件中的內容挪作商業(yè)或盈利用途。
- 5. 人人文庫網(wǎng)僅提供信息存儲空間,僅對用戶上傳內容的表現(xiàn)方式做保護處理,對用戶上傳分享的文檔內容本身不做任何修改或編輯,并不能對任何下載內容負責。
- 6. 下載文件中如有侵權或不適當內容,請與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準確性、安全性和完整性, 同時也不承擔用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。
最新文檔
- 2025年建筑施工安全考試題庫:安全生產(chǎn)信息化建設試題解析
- 2025-2030全球及中國電子級六氟化鎢(WF6)行業(yè)市場現(xiàn)狀供需分析及市場深度研究發(fā)展前景及規(guī)劃可行性分析研究報告
- 白俄羅斯語中的借詞來源分析論文
- 2025-2030全球及中國物理安全信息管理行業(yè)市場現(xiàn)狀供需分析及市場深度研究發(fā)展前景及規(guī)劃可行性分析研究報告
- 2025-2030全球及中國汽車裝飾產(chǎn)品行業(yè)市場現(xiàn)狀供需分析及市場深度研究發(fā)展前景及規(guī)劃可行性分析研究報告
- 2025年成人高考《語文》模擬沖刺題庫:文學名著人物分析與評價
- 2025-2030全球及中國智能企業(yè)數(shù)據(jù)捕獲軟件行業(yè)市場現(xiàn)狀供需分析及市場深度研究發(fā)展前景及規(guī)劃可行性分析研究報告
- 2025-2030全球及中國工業(yè)通信行業(yè)市場現(xiàn)狀供需分析及市場深度研究發(fā)展前景及規(guī)劃可行性分析研究報告
- 薩摩亞語與波利尼西亞語系的比較分析論文
- 2025-2030全球及中國制造庫存軟件行業(yè)市場現(xiàn)狀供需分析及市場深度研究發(fā)展前景及規(guī)劃可行性分析研究報告
- 2024-2025學年人教新目標英語八年級下冊期末綜合檢測卷(含答案)
- 331金屬晶體課件高二化學人教版選擇性必修2
- 礦山礦石采購合同模板
- 2024年浪潮數(shù)字企業(yè)技術有限公司社會招聘(105人)筆試核心備考題庫及答案解析
- 第47屆世界技能大賽江蘇省選拔賽競賽技術文件-混凝土建筑項目
- 2024年新人教版四年級數(shù)學下冊《第6單元第2課時 小數(shù)加減法》教學課件
- 國開2024年《數(shù)據(jù)庫運維》形考1-3
- 勞動合同(模版)4篇
- 137案例黑色三分鐘生死一瞬間事故案例文字版
- 藥物研發(fā)監(jiān)管的國際協(xié)調
- 生豬屠宰獸醫(yī)衛(wèi)生檢驗人員理論考試題及答案
評論
0/150
提交評論