在使用 Turbolinks 5 的 Android 上,我没有得到经典的 Turbolinks 过渡(没有任何中间白页,顶部有水平进度条)。所以 我认为我需要自己的 progressView 但我可能错了
我的MainActivity.java中有这个
progressView = new ProgressBar(turbolinksView.getContext());
TurbolinksSession.getDefault(this)
.activity(this)
.adapter(this)
.view(turbolinksView)
.progressView(progressView, R.id.indeterminateBar, 300)
.visit(location);
这在我的activity_main.xml中
<ProgressBar
android:id="@+id/indeterminateBar"
android:layout_width="wrap_content"
style="@android:style/Widget.ProgressBar.Horizontal"
android:layout_height="wrap_content"
/>
毕业设置是
compileSdkVersion 26
minSdkVersion 19
targetSdkVersion 22
当我运行上述内容时,我得到了IllegalArgumentException "A progress indicator view must be provided in your custom progressView."
,所以我尝试了
.progressView(progressView, progressView.getId(), 300)
但我仍然得到IllegalArgumentException "A progress indicator view must be provided in your custom progressView."
显然我无法实例化权利progressView
,我的问题是我如何获得/创建权利progressView
?
提前道歉从Turbolinks-Android交叉发布问题我在这里发布的唯一原因是我已经坚持了好几天