1
0
mirror of https://github.com/akaessens/NoFbEventScraper synced 2025-06-05 23:29:13 +02:00

move html to res/raw to enable localization

This commit is contained in:
akaessens
2020-08-30 19:09:44 +02:00
parent 7a44e467f0
commit 9540b252a5
5 changed files with 3 additions and 3 deletions

View File

@ -24,7 +24,7 @@ public class AboutActivity extends AppCompatActivity {
WebView webview_about = findViewById(R.id.webview_about);
webview_about.loadUrl("file:////android_asset/about.html");
webview_about.loadUrl("file:///android_res/raw/about.html");
}

View File

@ -19,7 +19,7 @@ public class HelpActivity extends AppCompatActivity {
WebView webview_help = findViewById(R.id.webview_help);
webview_help.loadUrl("file:////android_asset/help.html");
webview_help.loadUrl("file:////android_res/raw/help.html");
}
}