我想出了一个解决方案...我不知道它是否完美,但效果很好。
所以我所做的是一个单一的 FrameLayout,两个布局堆叠在一起,然后我只是动画顶部布局滑动到屏幕的右侧(只需要调用 slideTo 或 scrollBy。基本上就是这样!相当简单有效!(代码虽然不是很漂亮:P)
编辑:
一些代码示例。
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#FFF" >
<include
android:id="@+id/menu_layout"
layout="@layout/menu_list"
android:visibility="invisible"/>
<include
android:id="@+id/news_list_parent"
layout="@layout/main_news_list"
/>
</FrameLayout>
这是布局xml,很简单。包含的 .xml 是带有标题和列表视图的简单线性布局。
“魔法”发生在动画中:
protected void applyTransformation(float interpolatedTime, Transformation t) {
int newOffset;
if(expanded) {
newOffset = 0;
newOffset = (int)(endOffset*(1-interpolatedTime));
} else {
newOffset = (int)(endOffset*(interpolatedTime));
}
view.scrollTo(-newOffset, 0);
}
endOffset 是目标移动。我在开始动画之前设置了它,而我想要动画的视图(在本例中是 id=news_list_parent 的视图)在构造函数中设置。
但只是为了理解它是如何工作的,制作一个按钮和它的监听器会做这样的事情:
if(viewBeneath.getVisibility() == View.INVISIBLE) {
viewBeneath.setVisibility(View.Visible);
viewToSlide.slideTo(-(width-50), 0);
}
最后覆盖后退按钮做按钮的反面
if(viewBeneath.getVisibility() == View.VISIBLE) {
viewToSlide.slideTo(0, 0);
viewBeneath.setVisibility(View.Visible);
}
将此作为伪代码阅读=)这是我一开始所做的,该代码丢失了:P