最近想做乙個左右滑動切換背景的應用,特地將自己的研究分享一下:
這個需要繼承2個監聽介面
ongesturelistener, ontouchlistener
關於這2個介面大家可以在網上查一下
同事需要設定2
個屬性
bglayout.setontouchlistener(this);
bglayout.setlongclickable(true);
並且在這個函式中有如下這幾句話
public boolean ontouch(view v, motionevent event)
附送**:
[html]view plain
copy
public class switcheractivity extends activity implements ongesturelistener,
ontouchlistener
public boolean ondown(motionevent e)
public boolean onfling(motionevent e1, motionevent e2, float velocityx,
float velocityy)
if (flag
== 4)
if (flag
== 1)
if (flag
== 2)
} else if (e1.getx() - e2.getx() <
-100
)
if (flag
== 2)
if (flag
== 5)
if (flag
== 4)
} return false;
} public void onlongpress(motionevent e)
public boolean onscroll(motionevent e1, motionevent e2, float distancex,
float distancey)
public void onshowpress(motionevent e)
public boolean onsingletapup(motionevent e)
public boolean ontouch(view v, motionevent event)
}
基於jQuery左右滑動切換特效
分享一款基於腳jquery左右滑動切換特效。這是一款滑鼠點選左右箭頭按鈕滾動切換,滑鼠移到上顯示透明邊框特效。效果圖如下 實現的 dd 高同學 dd p 2013年cpa暑期班學員,一年通過5門課程 dd 李同學 dd p 2014年cpa週末旗艦班學員 1年通過4門課程 dd 丁同學 dd p 現...
帶有ListView介面左右滑動,切換介面
帶有listview介面左右滑動,切換介面 相信大家在做ongesturelistener滑動切換視窗的時候,會遇到這樣的問題。就是當介面中含有listview的時候,ongesturelistener的左右觸屏滑動就被listview自己吃掉了。翻看api幫助文件和自己的一些理解,決定從對list...
Android EditText左右滑動
預設的edittext寫滿一行後會自動轉換到下一行,但是我們有時候需要的滿一行後左右滑動過去而不是換行,此時我們可以設定edittext 的屬性 android maxlines 1 即可,如果不可以,則加上 android singleline true android layout width ...