charmeleon2
charmeleon2
- [ ] I have searched [existing issues](https://github.com/google/flexbox-layout/issues) and confirmed this is not a duplicate ## Issues and steps to reproduce when i add view, i want to get lines,but...
` val current = Calendar.getInstance() var mBirth = tv_birth.text.toString() mBirth="1996-02-03" LogUtils.w(mBirth) if (mBirth.isBlank()) { current[Calendar.YEAR] -= 24 } else { current[Calendar.YEAR] = mBirth.substring(0, 4).toInt() current[Calendar.MONTH] = mBirth.substring(5, 7).toInt() - 1...
编译的时候大量的More than one file was found with OS independent path错误 最后需要加上 exclude 'lib/x86_64/librsjni_androidx.so' exclude 'lib/arm64-v8a/libRSSupport.so' exclude 'lib/armeabi-v7a/librsjni_androidx.so' exclude 'lib/armeabi-v7a/librsjni.so' exclude 'lib/x86/libRSSupport.so' exclude 'lib/armeabi-v7a/libRSSupport.so' exclude 'lib/x86_64/libRSSupport.so' exclude 'lib/arm64-v8a/librsjni.so' exclude 'lib/arm64-v8a/librsjni_androidx.so' exclude...
页面整体上是vp+vp+fragment的形式,当二级vp切换时,二级vp里的frgament只有第一个会显示内容  二级vp里的fragment是同一个类,只是数据源不同 ``` mPageLayout = PageLayout.Builder(requireContext()).initPage(nestedScrollView) .setOnRetryListener(object : PageLayout.OnRetryClickListener { override fun onRetry() { getData() } }) .create() ``` 这里的nestedScrollView是用kotlin-android-extensions插件生成的,不知道是否有影响