安卓自定義layout實現下拉的問題

2021-07-25 18:23:04 字數 1059 閱讀 5527

我按照網上的教程,寫了乙個自定義的linearlayout,想實現下拉重新整理,但是,好像將聽不到觸控移動事件

這是怎麼回事?

@override

public boolean ontouchevent(motionevent event)  else if (movestatement == pull) 

break;

}return super.ontouchevent(event);

}

這是ontouchevent方法

但是不管怎麼拖動,都只有這乙個

10-18 06:53:00.825: i/motionevent.action_down(2212): starting

10-18 06:53:01.895: i/motionevent.action_down(2212): starting

10-18 06:53:06.685: i/motionevent.action_down(2212): starting

10-18 06:53:07.295: i/motionevent.action_down(2212): starting

10-18 06:53:07.955: i/motionevent.action_down(2212): starting

10-18 06:53:29.795: i/motionevent.action_down(2212): starting

10-18 06:54:26.585: i/motionevent.action_down(2212): starting

10-18 06:54:29.005: i/motionevent.action_down(2212): starting

10-18 06:54:30.695: i/motionevent.action_down(2212): starting

10-18 06:54:31.185: i/motionevent.action_down(2212): starting

我在布局的xml檔案裡已經加了scrollview了,這個自定義的layout也加了頭布局

安卓自定義組合控制項的實現

步驟 1.先建立乙個xml檔案做好裡面的布局 2.建立乙個對應的類 3.在需要用到此布局的地方進行呼叫這個布局 具體的實現 1.建立的xml檔案 2.建立乙個對應的類 package com.jit.mobilesafe.ui import com.jit.mobilesafe.r import a...

安卓自定義屬性運用

1.reference 參考某一資源id。1 屬性定義 background format reference 2 屬性使用 android layout width 42dip android layout height 42dip android background drawable id 2...

自定義AlertDialog實現下彈窗效果

1,實現這個dialog其實最主要的是window的設定和dialog的主題設定,list是由resycleview實現的,下面直接上 private void initwindow 2,啟動的時候,可以傳入相應的主題theme,theme決定了你dialog的顯示樣式,先上theme的 3,啟動的...