本文實(shí)例為大家分享了Android實(shí)現(xiàn)底部拖動(dòng)查看圖文詳情的具體代碼,供大家參考,具體內(nèi)容如下
創(chuàng)新互聯(lián)專注為客戶提供全方位的互聯(lián)網(wǎng)綜合服務(wù),包含不限于成都網(wǎng)站設(shè)計(jì)、網(wǎng)站建設(shè)、大寧網(wǎng)絡(luò)推廣、小程序定制開發(fā)、大寧網(wǎng)絡(luò)營銷、大寧企業(yè)策劃、大寧品牌公關(guān)、搜索引擎seo、人物專訪、企業(yè)宣傳片、企業(yè)代運(yùn)營等,從售前售中售后,我們都將竭誠為您服務(wù),您的肯定,是我們最大的嘉獎(jiǎng);創(chuàng)新互聯(lián)為所有大學(xué)生創(chuàng)業(yè)者提供大寧建站搭建服務(wù),24小時(shí)服務(wù)熱線:18980820575,官方網(wǎng)址:www.cdcxhl.com
一、效果圖
二、實(shí)現(xiàn)步驟
1.xml布局的實(shí)現(xiàn)/p>
2.activity的實(shí)現(xiàn)
private ScrollView mScrollView; mScrollView = (ScrollView) findViewById(R.id.mymyscrollview); //調(diào)用方法 mScrollView.setOnTouchListener(new TouchListenerImpl()); private int scrollY; private int height; private int scrollViewMeasuredHeight; private class TouchListenerImpl implements View.OnTouchListener { @Override public boolean onTouch(View view, MotionEvent motionEvent) { switch (motionEvent.getAction()) { case MotionEvent.ACTION_DOWN: break; case MotionEvent.ACTION_MOVE: scrollY = view.getScrollY(); height = view.getHeight(); scrollViewMeasuredHeight = mScrollView.getChildAt(0) .getMeasuredHeight(); break; case MotionEvent.ACTION_UP: System.out.println("scrollY=" + scrollY); System.out.println("height=" + height); System.out.println("scrollViewMeasuredHeight=" + scrollViewMeasuredHeight); if (scrollY == 0) { System.out.println("滑動(dòng)到了頂端 view.getScrollY()=" + scrollY); } else if ((scrollY + height) >= scrollViewMeasuredHeight) { Message msg = new Message(); msg.what = 0; mHandlerht.sendMessage(msg); } else { System.out.println("滑動(dòng) height=" + height); } // 復(fù)位 scrollY = 0; height = 0; scrollViewMeasuredHeight = 0; break; default: break; } return false; } } private Handler mHandlerht = new Handler() { public void handleMessage(Message msg) { switch (msg.what) { case 0: // 跳轉(zhuǎn) Intent intentcll = new Intent(); intentcll.setClass(BDDetialActivityCll.this, CSProductDetailsCll.class); intentcll.putExtra("product", ncspbean); startActivity(intentcll); break; default: break; } } };
以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持創(chuàng)新互聯(lián)。