在其他视图的滚动中隐藏片段中的视图

时间:2017-04-05 08:13:59

标签: android android-layout android-fragments

我在content_main中使用导航抽屉活动,有一个线性布局会用片段膨胀。

content_main.xml

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/content_home"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    app:layout_behavior="@string/appbar_scrolling_view_behavior"
    tools:context="net.techdesire.khabargujarat.HomeActivity"
    tools:showIn="@layout/app_bar_home">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:id="@+id/fragment_container"/>

</RelativeLayout>

fragment_home.xml

<android.support.percent.PercentRelativeLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context="fragment.HomeFragment">

        <android.support.v4.view.ViewPager
            android:id="@+id/viewpager"
            android:layout_width="match_parent"
            app:layout_heightPercent="40%"/>


        <RelativeLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:padding="5dp"
            app:layout_heightPercent="60%"
            android:layout_below="@+id/viewpager">

            <TextView
                android:id="@+id/about"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginBottom="5dp"
                android:text="@string/about_khijadiya"
                android:textAppearance="@style/TextAppearance.AppCompat.Large"/>

            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_below="@+id/about"
                android:text="@string/dummy"
                android:textAppearance="@style/TextAppearance.AppCompat.Medium"/>
        </RelativeLayout>
</android.support.percent.PercentRelativeLayout>

我在textview中有大量内容命名。我想让它可滚动,就像在image.First滚动relativelayout到全屏幕,如果约的内容仍然溢出,那么只做textview可滚动。滚动到达顶部时,如果用户从那里向下滑动,则重新显示viewpager。

enter image description here

1 个答案:

答案 0 :(得分:0)

我认为,您的要求是在滚动时折叠视图。

  

所以你可以使用   &#34; android.support.design.widget.CollapsingToolbarLayout&#34;

它在材料设计中实施。

您可以参考此链接: http://www.androidhive.info/2016/05/android-working-with-card-view-and-recycler-view/