我有一个使用 Ruby on Rails 制作并启用 Turbolinks 5 的网络应用程序,但目前,我需要制作一个由Basecamp实际设计的原生 Android 应用程序。
在他们的GitHub 存储库上进行了分步设置,我正在按照这些步骤进行操作,因为turbolinks-android
根据他们的教程,这里(谷歌)没有足够的帮助,但我没有加载任何内容,例如
#=> If I use Basecamp URL
private static final String BASE_URL = "https://basecamp.com";
不改变任何东西总是显示空白屏幕
#=> My local project
private static final String BASE_URL = "http://localhost:3000";
同样没有改变任何显示空白屏幕的东西
activity_main.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<com.basecamp.turbolinks.TurbolinksView
android:id="@+id/turbolinks_view"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</LinearLayout>
MainActivity.java
import com.basecamp.turbolinks.TurbolinksSession;
import com.basecamp.turbolinks.TurbolinksAdapter;
import com.basecamp.turbolinks.TurbolinksView;
都与他们的文档相同
欣赏是否有帮助
谢谢