View.GONE仍然在布局中占据空间

时间:2016-11-29 09:44:43

标签: android android-viewpager visibility

好的,这将被标记为重复,我很抱歉,但我已经经历了很多建议和答案,无法正常工作,因为标题说我想设置一个视图GONE然后有剩下的空间被其他视图占用,现在如果我将它设置为GONE它留下了一个空间,它曾经在布局中,视图是一个viewpager,我设置它固定的高度,到目前为止我读过我必须删除边距,并没有一个固定的高度为viewpager所以我尝试做这样的事情

    if (cardsChoice.predictive == true) {

        viewPagerPredicts.setVisibility(View.VISIBLE);
        RelativeLayout.LayoutParams layoutParams = 
        (RelativeLayout.LayoutParams)viewPagerPredicts.getLayoutParams();
        layoutParams.setMargins(8,4,8,0);
        layoutParams.height = R.dimen.predicts_pager_height;
        viewPagerPredicts.setLayoutParams(layoutParams);

    }else{

        viewPagerPredicts.setVisibility(View.GONE);
        RelativeLayout.LayoutParams layoutParams =  
        (RelativeLayout.LayoutParams)viewPagerPredicts.getLayoutParams();
        layoutParams.setMargins(0,0,0,0);
        layoutParams.height = 0;
        viewPagerPredicts.setLayoutParams(layoutParams);
    }

但这不起作用该视图似乎要么忽略值并匹配父项或消失并将其余的布局用于它,任何人都可以看到我做错了我的错误添加我的xml

<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout     
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"
android:fitsSystemWindows="true"
tools:context=".MainActivity">

<RelativeLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:id="@+id/viewpagerHolder"
        android:layout_marginTop="64dp"
        android:layout_alignParentBottom="true">

        <android.support.v4.view.ViewPager
            android:id="@+id/viewpager2"
            android:layout_width="match_parent"
            android:layout_marginLeft="8dp"
            android:layout_marginRight="8dp"
            android:layout_height="@dimen/card_pager_height" />

        <android.support.v4.view.ViewPager
            android:id="@+id/viewpager_predicts"
            android:layout_width="wrap_content"
            android:layout_marginLeft="8dp"
            android:layout_marginRight="8dp"
            android:layout_marginTop="4dp"
            android:layout_height="@dimen/predicts_pager_height"
            android:layout_below="@id/viewpager2" />

        <android.support.design.widget.TabLayout
            android:id="@+id/tabs"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            app:tabGravity="fill"
            android:layout_below="@id/viewpager_predicts"
            android:theme="@style/CustomTabLayoutStyle"
            android:layout_alignParentLeft="true"
            android:layout_alignParentStart="true" />

        <android.support.design.widget.FloatingActionButton
            android:id="@+id/fab2"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            app:elevation="4dp"
            android:src="@drawable/ic_playlist_play_white_24dp"
            android:layout_alignBottom="@+id/viewpager2"
            android:layout_alignRight="@+id/viewpager2"
            android:layout_alignEnd="@+id/viewpager2" />


        <android.support.v4.view.ViewPager
            android:id="@+id/viewpager"
            android:background="@color/windowBackground"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            app:layout_behavior="@string/appbar_scrolling_view_behavior"
            android:layout_below="@+id/tabs" />


    </RelativeLayout>

</RelativeLayout>

<android.support.design.widget.AppBarLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content">

    <android.support.v7.widget.Toolbar
        android:id="@+id/toolbar"
        android:layout_width="match_parent"
        android:layout_height="?attr/actionBarSize" />

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



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

4 个答案:

答案 0 :(得分:1)

  1. 可能是layout_marginTop =“64dp”和android:layout_alignParentBottom =“true”令你困惑。

  2. 可能的原因可能是片段附加到主机活动。 设置Pager adapter null,然后设置可见性。

    if(cardsChoice.predictive == true){         viewPagerPredicts.setAdapter(new YourFragmentAdapter());

        viewPagerPredicts.setVisibility(View.VISIBLE);
        RelativeLayout.LayoutParams layoutParams = 
        (RelativeLayout.LayoutParams)viewPagerPredicts.getLayoutParams();
        layoutParams.setMargins(8,4,8,0);
        layoutParams.height = R.dimen.predicts_pager_height;
        viewPagerPredicts.setLayoutParams(layoutParams);
    
    }else{
    
        viewPagerPredicts.setAdapter(null);
        viewPagerPredicts.setVisibility(View.GONE);
        RelativeLayout.LayoutParams layoutParams =  
        (RelativeLayout.LayoutParams)viewPagerPredicts.getLayoutParams();
        layoutParams.setMargins(0,0,0,0);
        layoutParams.height = 0;
        viewPagerPredicts.setLayoutParams(layoutParams);
    }
    

答案 1 :(得分:1)

你提到“剩下的空间占用了其他视图”,其他观点也是如此。我可以看到以下

viewpager2 - 它不占用空间,因为它具有固定高度card_pager_height viewpager - 仅当由于viewpager_predicts而关联制表符时才会占用空间。

标签 - 在viewpager_predicts消失后必须受到影响,但您已定义android:layout_below="@id/viewpager_predicts",在viewpager_predicts消失后,该ignore: ":not(:visible), .ignore", 将无效。 请更正。

将可见性设置为GONE之后还有一件事,无需更改layoutParam,因为它没用。

答案 2 :(得分:0)

我认为你正在寻找这样的东西。 将它放入一些布局文件并检查预览中的行为。设置第二个文本视图中的可见性,您会注意到第一个文本视图占用了剩余的屏幕高度。这可以直接从布局实现,而无需以编程方式设置。

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

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="0dp"
        android:layout_weight="1"
        android:text="@string/about_app" />

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="0dp"
        android:layout_weight="1"
        android:text="@string/about_app" />

</LinearLayout>

答案 3 :(得分:0)

好吧我已经解决了我的问题,部分原因是由于@Girish指出我的布局(没有任何东西占用了空白区域,因为没有什么可以)我也试图在布局完成后编辑布局参数但是另一件我要提的是,我使用尺寸为我的布局高度,这似乎也导致空间是空的,但保持其空间(像View.INVISIBLE一样)所以绕过这个我已经把它包裹起来另一个视图,并使View.GONE似乎工作得很好所以我的最终代码看起来像这样

if (cardsChoice.predictive) {

        linearLayout.setVisibility(View.VISIBLE);
        viewPagerPredicts.setVisibility(View.VISIBLE);
        LinearLayout.LayoutParams layoutParams = 
        (LinearLayout.LayoutParams)viewPagerPredicts.getLayoutParams();
        layoutParams.setMargins(8,4,8,0);
        viewPagerPredicts.setLayoutParams(layoutParams);

    }else{

        viewPagerPredicts.setAdapter(null);
        LinearLayout.LayoutParams layoutParams = 
        (LinearLayout.LayoutParams)viewPagerPredicts.getLayoutParams();
        layoutParams.setMargins(0,0,0,0);
        viewPagerPredicts.setLayoutParams(layoutParams);
        viewPagerPredicts.setVisibility(View.GONE);
        linearLayout.setVisibility(View.GONE);
    } 

我的xml看起来像这样

<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout   
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"
android:fitsSystemWindows="true"
tools:context=".MainActivity">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical"
        android:id="@+id/viewpagerHolder"
        android:layout_marginTop="64dp">

        <android.support.v4.view.ViewPager
            android:id="@+id/viewpager2"
            android:layout_width="match_parent"
            android:layout_marginLeft="8dp"
            android:layout_marginRight="8dp"
            android:layout_height="@dimen/card_pager_height" />

        <LinearLayout
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:id="@+id/predictsHolder"
            android:orientation="vertical">

        <android.support.v4.view.ViewPager
            android:id="@+id/viewpager_predicts"
            android:layout_width="wrap_content"
            android:layout_marginLeft="8dp"
            android:layout_marginRight="8dp"
            android:layout_marginTop="4dp"
            android:layout_height="@dimen/predicts_pager_height" />

        </LinearLayout>

        <android.support.design.widget.TabLayout
            android:id="@+id/tabs"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            app:tabGravity="fill"
            android:theme="@style/CustomTabLayoutStyle" />

        <android.support.v4.view.ViewPager
            android:id="@+id/viewpager"
            android:background="@color/windowBackground"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
             />


    </LinearLayout>

<android.support.design.widget.FloatingActionButton
    android:id="@+id/fab2"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    app:elevation="4dp"
    android:src="@drawable/ic_playlist_play_white_24dp" />

<android.support.design.widget.AppBarLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content">

    <android.support.v7.widget.Toolbar
        android:id="@+id/toolbar"
        android:layout_width="match_parent"
        android:layout_height="?attr/actionBarSize" />

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

感谢您的帮助,你们都应该得到一个cookie和答案的要点,但除了一个抱歉,我只能这样做