2
我是Android開發的新手。我想實現一個帶動畫的滑動按鈕。效果顯示在以下視頻中:http://www.youtube.com/watch?v=ImHe4N4mvE4。這就像iphone的「滑動解鎖」效果。我的問題是如何推動這種效果。這個應用程序是用changeview,scrollview實現的嗎?Android滑塊按鈕部件
我是Android開發的新手。我想實現一個帶動畫的滑動按鈕。效果顯示在以下視頻中:http://www.youtube.com/watch?v=ImHe4N4mvE4。這就像iphone的「滑動解鎖」效果。我的問題是如何推動這種效果。這個應用程序是用changeview,scrollview實現的嗎?Android滑塊按鈕部件
你可以在一個線性佈局的高度提出的形象圖動畫是包裹內容和寬度是填補父
代碼爲動畫
public static Animation inFromLeftAnimation() {
Animation inFromLeft = new TranslateAnimation(
Animation.RELATIVE_TO_PARENT, -1.0f, Animation.RELATIVE_TO_PARENT, 0.0f,
Animation.RELATIVE_TO_PARENT, 0.0f, Animation.RELATIVE_TO_PARENT, 0.0f
);
inFromLeft.setDuration(350);
inFromLeft.setInterpolator(new AccelerateInterpolator());
return inFromLeft;
}
public static Animation outToLeftAnimation() {
Animation outtoLeft = new TranslateAnimation(
Animation.RELATIVE_TO_PARENT, 0.0f, Animation.RELATIVE_TO_PARENT, -1.0f,
Animation.RELATIVE_TO_PARENT, 0.0f, Animation.RELATIVE_TO_PARENT, 0.0f
);
outtoLeft.setDuration(350);
outtoLeft.setInterpolator(new AccelerateInterpolator());
return outtoLeft;
}
謝謝,但我想移動與手指速度滑塊。在這段代碼中速度是固定的。 – CoolDeep
根據您的願望 –
相應更改動畫或只是自定義滑動抽屜(將抽屜調用者設置爲隱形 –