gpt4 book ai didi

android - 第一次设置 VISIBLE 后 RecyclerView 的内容不可见。 (此代码适用于 v4-25.0.1)

转载 作者:太空狗 更新时间:2023-10-29 14:43:11 25 4
gpt4 key购买 nike

下面的代码在 support-v4:25.0.1 下运行良好,但不适用于 25.4.0 以上的所有版本。

Here是一个非常小的示例项目来展示这个问题

当 Activity 第一次打开时,Recyclerview 的可见性设置为 GONE

Opening activity for the first time

(Bug 在这里)第一次切换到 TAB 2 后,Recylcerview 的内容不可见。

enter image description here

返回 TAB 1 并再次返回 TAB 2 将显示 Recyclerview 的内容。

enter image description here

您是否有任何解决方案如何使用支持 v4 25.4.0 使其正常工作?

dependencies.gradle

//final SUPPORT_LIB_VERSION = '25.0.1' // last working version
final SUPPORT_LIB_VERSION = '25.4.0'

dependencies {
compile "com.android.support:appcompat-v7:${SUPPORT_LIB_VERSION}"
compile "com.android.support:recyclerview-v7:${SUPPORT_LIB_VERSION}"
compile "com.android.support:design:${SUPPORT_LIB_VERSION}"
}

activity_main.xml

<?xml version="1.0" encoding="utf-8"?>
<layout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">
<data>
<import type="android.view.View" />
<import type="android.text.TextUtils" />
</data>

<android.support.design.widget.CoordinatorLayout
android:fitsSystemWindows="true"
android:layout_width="match_parent"
android:layout_height="match_parent">

<android.support.design.widget.AppBarLayout
android:id="@+id/main_appbar"
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"
android:fitsSystemWindows="true"
app:contentScrim="?attr/colorPrimary"
app:expandedTitleMarginEnd="64dp"
app:expandedTitleMarginStart="48dp"
app:layout_scrollFlags="scroll|exitUntilCollapsed">

<ImageView
android:fitsSystemWindows="true"
android:src="@drawable/stockmedia_cc_dsd_8910"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:scaleType="centerCrop"
app:layout_collapseMode="parallax"
android:minHeight="100dp"/>

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


</android.support.design.widget.CollapsingToolbarLayout>
<android.support.design.widget.TabLayout
android:id="@+id/tab_layout"
android:layout_gravity="bottom"
app:tabMaxWidth="0dp"
app:tabGravity="fill"
app:tabMode="fixed"
android:layout_height="wrap_content"
android:layout_width="match_parent">

<android.support.design.widget.TabItem
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:text="@string/tab_1"/>

<android.support.design.widget.TabItem
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:text="@string/tab_2"/>
</android.support.design.widget.TabLayout>
</android.support.design.widget.AppBarLayout>


<android.support.v4.widget.NestedScrollView
android:id="@+id/nested_scroll_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
<TextView
android:gravity="center"
android:text="@string/content_1"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</android.support.v4.widget.NestedScrollView>
<android.support.v7.widget.RecyclerView
app:layout_behavior="@string/appbar_scrolling_view_behavior"
android:visibility="gone"
android:id="@+id/recycler_view"
android:layout_width="match_parent"
android:layout_height="match_parent" />

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

MainActivity.java

public class MainActivity extends AppCompatActivity implements TabLayout.OnTabSelectedListener {

private ActivityMainBinding binding;

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
binding = DataBindingUtil.setContentView(this, R.layout.activity_main);
setSupportActionBar(binding.toolbar);
binding.tabLayout.addOnTabSelectedListener(this);
binding.recyclerView.setAdapter(new TestAdapter(this));
binding.recyclerView.setLayoutManager(new LinearLayoutManager(this));
}

@Override
public void onTabSelected(TabLayout.Tab tab) {
boolean firstTabVisible = tab.getPosition() == 0;
binding.nestedScrollView.setVisibility(!firstTabVisible ? View.GONE : View.VISIBLE);
binding.recyclerView.setVisibility(firstTabVisible ? View.GONE : View.VISIBLE);
}

@Override
public void onTabUnselected(TabLayout.Tab tab) {

}

@Override
public void onTabReselected(TabLayout.Tab tab) {

}
}

可能的解决方法

一种可能的解决方法是推迟在 Recyclerview 上设置 Visibility.GONE,直到它变得可见。但我不喜欢这个解决方案,我认为这应该在 support-v4 lib 中修复

public class MainActivity extends AppCompatActivity implements TabLayout.OnTabSelectedListener {

private ActivityMainBinding binding;

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
binding = DataBindingUtil.setContentView(this, R.layout.activity_main);
setSupportActionBar(binding.toolbar);
binding.tabLayout.addOnTabSelectedListener(this);
binding.recyclerView.getViewTreeObserver().addOnGlobalLayoutListener(new ViewTreeObserver.OnGlobalLayoutListener() {
@Override
public void onGlobalLayout() {
updateTabVisibility();
if(Build.VERSION.SDK_INT > Build.VERSION_CODES.ICE_CREAM_SANDWICH_MR1) {
binding.recyclerView.getViewTreeObserver().removeOnGlobalLayoutListener(this);
} else {
binding.recyclerView.getViewTreeObserver().removeGlobalOnLayoutListener(this);
}
}
});
binding.recyclerView.setAdapter(new TestAdapter(this));
binding.recyclerView.setLayoutManager(new LinearLayoutManager(this));
}

@Override
public void onTabSelected(TabLayout.Tab tab) {
updateTabVisibility();
}

private void updateTabVisibility() {
boolean firstTabVisible = binding.tabLayout.getSelectedTabPosition() == 0;
binding.nestedScrollView.setVisibility(!firstTabVisible ? View.GONE : View.VISIBLE);
binding.recyclerView.setVisibility(firstTabVisible ? View.GONE : View.VISIBLE);
}

@Override
public void onTabUnselected(TabLayout.Tab tab) {

}

@Override
public void onTabReselected(TabLayout.Tab tab) {

}
}

最佳答案

问题不在于 Lib 版本。问题出在您的代码上。据我所知,即使您恢复到以前的 Lib 版本,它仍然无法正常工作。试试吧!现在指出问题是您的 Recyclerview 的可见性默认为“GONE”;因为您已将其设置为在您的 XML 文件中消失。并且您正在使它在您的“OnTabSelected”方法中可见。所以直到你不会改变它不会出现的标签。您所要做的就是从 XML 文件的 Recyclerview 对象中删除这一行 (android:visibility="gone")。希望它对你有用!

关于android - 第一次设置 VISIBLE 后 RecyclerView 的内容不可见。 (此代码适用于 v4-25.0.1),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44597159/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com