Listview 嵌套滚动视图Android Studio

Listview 嵌套滚动视图Android Studio,listview,android-studio,android-button,android-nestedscrollview,Listview,Android Studio,Android Button,Android Nestedscrollview,如何实现此设计(黄色箭头)?还有(橙色箭头)?是列表视图吗?提前谢谢 为此,您可以使用一个TableLayout和一个recyclerview。 也可以使用NestedScrollView 这一条也有助于您: 不要错过这个: 为此,您可以使用一个TableLayout和一个recyclerview。 也可以使用NestedScrollView 这一条也有助于您: 不要错过这个: 黄色是水平滚动或制表符??在他们对Paymaya的赞誉中,它是制表符sirA黄色是水平滚动或制表符??

如何实现此设计(黄色箭头)?还有(橙色箭头)?是列表视图吗?提前谢谢


为此,您可以使用一个TableLayout和一个recyclerview。 也可以使用NestedScrollView

这一条也有助于您:

不要错过这个:


为此,您可以使用一个TableLayout和一个recyclerview。 也可以使用NestedScrollView

这一条也有助于您:

不要错过这个:


黄色是水平滚动或制表符??在他们对Paymaya的赞誉中,它是制表符sirA黄色是水平滚动或制表符??在他们对Paymaya的赞誉中,它是制表符sir非常感谢您,先生,我要试试这个法!你能回答这个问题吗(这是关于你的井字游戏):非常感谢你,先生,我要试试这个法!你能回答这个问题吗(关于你的井字游戏):
<android.support.v4.widget.NestedScrollView
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:scrollbars="none">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:focusableInTouchMode="true"
        android:orientation="vertical">

    <android.support.design.widget.TabLayout
        android:id="@+id/fragment_manager_tab_bar_tab_layout"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        app:tabGravity="fill"
       app:tabMode="fixed"
       app:tabTextColor="@color/tab_inactive"
       app:tabSelectedTextColor="@color/tab_active"
       app:tabIndicatorColor="@color/tab_active" />


        <android.support.v7.widget.RecyclerView
            android:id="@+id/product_list"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:orientation="vertical"
            android:scrollbars="none" />

    </LinearLayout>
</android.support.v4.widget.NestedScrollView>