为了实现导航栏ala Facebook,我有以下布局配置:
<FrameLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
>
<!-- This is the Lower Layer hosting the navbar -->
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
>
<!-- ListView representing the navbar -->
<ListView
/>
</LinearLayout>
<!-- This is the Top Layer hosting the Content -->
<FrameLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
>
<!-- This is where the View of the Content will be injected -->
</FrameLayout>
</FrameLayout>
所以基本的想法是,当我想打开导航栏时,我只需将TopLayer向右移动,导航栏就会显示出来。现在这很好用,我可以与导航栏 ListView
交互以在应用程序中导航,只要注入到内部的视图TopLayer
不是 a ScrollableView
(如 another ListView
、 aScrollView
或 a WebView
)。
例如,当TopLayer
是一个WebView
实例时,我无法滚动并与导航栏 ListView
交互,因为它是WebView
滚动的(尽管我将它移到了右侧)。
我想叠加许多ScrollableView
's 并非易事,但我希望有一些技巧可以克服这些问题。
谢谢你的帮助!
编辑
顺便说一句,这就是我改变TopLayer
视图的方式(使用TranslateAnimation):
TranslateAnimation translateAnim = new TranslateAnimation(0.0F, mListView.getWidth(), 0.0F, 0.0F);
translateAnim.setDuration(..);
translateAnim.setFillAfter(true);
mTopLayerView.startAnimation(translateAnim);