具有坐标布局的材料复杂UI +选项卡布局+查看寻呼机+循环视图

时间:2016-07-08 13:03:55

标签: android android-layout android-fragments material-design android-coordinatorlayout

您好我正在开发具有一些复杂UI功能的应用程序  ,我需要一些建议用新材料设计来构建它  虽然我正面临一些问题。谢谢你。

mockup

下面的横幅图片到viewpager我已经建立了它。但现在我正在使用循环视图。当我点击项目需要更改整个布局包含根据顶部recylce视图点击..eg南印度点击更改根据它的整个菜...然后与chineese等...

请建议我正确的方法。

以下材料设计的红色标记内容设计是代码..

  

activity_menu.xml

res/drawable
  

MenuActivity.java

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:customfontdemo="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical">

    <RelativeLayout
        android:id="@+id/rel_header"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentTop="true"
        android:background="@color/black"
        android:padding="5dp">

        <ImageView
            android:id="@+id/backButton"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerVertical="true"
            android:padding="10dp"
            android:src="@mipmap/back_icon" />

        <EditText
            android:id="@+id/edt_search"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_centerVertical="true"
            android:layout_marginLeft="5dp"
            android:layout_toLeftOf="@+id/img_filter"
            android:layout_toRightOf="@+id/backButton"
            android:background="@null"
            android:drawableLeft="@mipmap/search"
            android:drawablePadding="10dp"
            android:ems="10"
            android:hint="search Dishes..."
            android:padding="10dp"
            android:singleLine="true"
            android:textSize="12sp">


        </EditText>

        <ImageView
            android:id="@+id/img_filter"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerVertical="true"
            android:layout_marginRight="5dp"
            android:layout_toLeftOf="@+id/img_view"
            android:padding="10dp"
            android:src="@mipmap/filter" />

        <ImageView
            android:id="@+id/img_view"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentRight="true"
            android:layout_centerVertical="true"
            android:layout_marginRight="5dp"
            android:padding="10dp"
            android:src="@mipmap/view" />
    </RelativeLayout>

    <android.support.v7.widget.RecyclerView
        android:id="@+id/recycler_menu"
        android:layout_width="match_parent"
        android:layout_height="?attr/actionBarSize"
        android:background="@color/black">

    </android.support.v7.widget.RecyclerView>


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

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

            <android.support.design.widget.CollapsingToolbarLayout
                android:id="@+id/collapse_toolbar"
                android:layout_width="match_parent"
                android:layout_height="250dp"
                android:fitsSystemWindows="true"
                app:contentScrim="?attr/colorPrimary"
                app:layout_scrollFlags="scroll|exitUntilCollapsed"
                app:titleEnabled="false">

                <ImageView
                    android:id="@+id/header"
                    android:layout_width="match_parent"
                    android:layout_height="match_parent"
                    android:background="@mipmap/feed_img"
                    android:fitsSystemWindows="true"
                    android:scaleType="centerCrop" />


                <android.support.v7.widget.Toolbar
                    android:id="@+id/toolbar"
                    android:layout_width="match_parent"
                    android:layout_height="?android:attr/actionBarSize"
                    android:gravity="top"
                    android:minHeight="?attr/actionBarSize"
                    app:layout_collapseMode="parallax"
                    app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
                    app:titleEnabled="false"
                    app:titleMarginTop="15dp">


                </android.support.v7.widget.Toolbar>

                <FrameLayout
                    android:layout_width="match_parent"
                    android:layout_height="match_parent"
                    android:layout_gravity="center"
                    app:layout_collapseMode="parallax">

                    <LinearLayout
                        android:layout_width="match_parent"
                        android:layout_height="wrap_content"
                        android:layout_gravity="center"
                        android:gravity="center"
                        android:orientation="vertical">

                        <com.vdine.customView.MyTextView
                            android:layout_width="wrap_content"
                            android:layout_height="wrap_content"
                            android:text="Soup"
                            android:textSize="22sp"
                            customfontdemo:fontName=" Bill Corporate Narrow Book [TheFontsMaster.com].otf" />

                        <com.vdine.customView.MyTextView
                            android:layout_width="wrap_content"
                            android:layout_height="wrap_content"
                            android:layout_marginTop="10dp"
                            android:text="Worries goes down better with soup"
                            customfontdemo:fontName=" Bill Corporate Narrow Book [TheFontsMaster.com].otf" />
                    </LinearLayout>
                </FrameLayout>

                <android.support.design.widget.TabLayout
                    android:id="@+id/tabs"
                    android:layout_width="match_parent"
                    android:layout_height="?attr/actionBarSize"
                    android:layout_gravity="bottom"
                    app:tabIndicatorColor="@color/colorAccent" />

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

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

        <android.support.v4.view.ViewPager
            android:id="@+id/viewpager"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            app:layout_behavior="@string/appbar_scrolling_view_behavior" />

        <android.support.design.widget.FloatingActionButton
            android:id="@+id/fab"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="end|bottom"
            android:layout_margin="8dp"
            android:src="@mipmap/plus"
            app:backgroundTint="@color/red_shed1"
            app:borderWidth="0dp"
            app:rippleColor="@color/red" />
    </android.support.design.widget.CoordinatorLayout>

</LinearLayout>

1 个答案:

答案 0 :(得分:4)

您可以将TabLayout与ViewPager一起使用,并为选项卡的每个页面放置片段。每个片段布局都可以包含您所需的recyclerview

请参阅:

https://github.com/codepath/android_guides/wiki/Google-Play-Style-Tabs-using-TabLayout

这将达到您的目的,并且最容易处理