如何在android中实现这个滑动窗格UI?

时间:2015-09-04 03:58:29

标签: android user-interface

enter image description here

我可以为Now_playing页面和List_Songs页面使用不同的活动,即。活动之间是否可能发生转变?

我还想为歌曲列表,艺术家和专辑制作3个句柄来拖出3个不同的页面。我该怎么做? 这种设计将如何影响性能? 谢谢。

2 个答案:

答案 0 :(得分:0)

您可以使用CollapsingToolbarLayoutAppBarLayoutCoordinatorLayout

请参阅此链接http://antonioleiva.com/collapsing-toolbar-layout/

<android.support.design.widget.CoordinatorLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:fitsSystemWindows="true">

    <android.support.design.widget.AppBarLayout
        android:id="@+id/app_bar_layout"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
        android:fitsSystemWindows="true">

        <android.support.design.widget.CollapsingToolbarLayout
            android:id="@+id/collapsing_toolbar"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            app:layout_scrollFlags="scroll|exitUntilCollapsed"
            app:contentScrim="?attr/colorPrimary"
            app:expandedTitleMarginStart="48dp"
            app:expandedTitleMarginEnd="64dp"
            android:fitsSystemWindows="true">

           <Your Layouts.......?> // 


        </android.support.design.widget.CollapsingToolbarLayout>

    </android.support.design.widget.AppBarLayout>

</android.support.design.widget.CoordinatorLayout>

答案 1 :(得分:0)

我可以为Now_playing页面和List_Songs页面使用不同的活动,即。活动之间是否可能发生转变?   
是的,你可以...但是在你的应用程序中有很多活动并不是一个好习惯。因为每个活动都会有它的上下文,它会消耗内存并且更重。有时处理它们也很困难。
相反,您可以通过一个活动实现所有这一切,而对于每个页面,您可以拥有一个片段。片段表示活动中的行为或用户界面的一部分,用于深入了解refer here。片段在处理屏幕方向变化,不同大小的屏幕和可重用性方面提供了很大的灵活性

我还想为歌曲列表,艺术家和专辑制作3个句柄来拖出3个不同的页面。我该怎么做?这种设计将如何影响性能?谢谢。如果您正在谈论导航和填充列表,那么您可以使用导航抽屉..请参阅一些音乐应用程序,如google play music