Time4Time app revived with local stored content. Needs to be redesigned..
AndroidManifest.xml
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="org.untony.webview" android:versionCode="1" android:versionName="1.0" > <uses-sdk android:minSdkVersion="4" /> <uses-permission android:name="android.permission.INTERNET" /> <application android:icon="@drawable/ic_launcher" android:label="@string/app_name" > <activity android:name=".Main" android:label="@string/app_name" > <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> </application> </manifest>
Main.java
package org.untony.webview; import android.app.Activity; import android.os.Bundle; import android.webkit.WebView; import android.webkit.WebViewClient; public class Main extends Activity { /** Called when the activity is first created. */ @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); WebView wv = (WebView)findViewById(R.id.my_webview); wv.setWebViewClient(new WebViewClient() { @Override public boolean shouldOverrideUrlLoading(WebView view, String url) { view.loadUrl(url); return true; } }); /** wv.loadDataWithBaseURL("file:///android_asset/index.html", data (muesste als string definiert werden, "text/html", "UTF-8", null); */ wv.loadUrl("file:///android_asset/index.html"); } }
main.xml
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="vertical" > <TextView android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="Der Langsamste, der sein Ziel nicht aus den Augen verliert, geht noch immer geschwinder als jener, der ohne Ziel umherirrt." android:layout_weight=".1" android:textSize="10sp" /> <WebView android:layout_width="fill_parent" android:layout_height="wrap_content" android:id="@+id/my_webview" android:layout_weight="10" android:layout_margin="0dip"/> <TextView android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_weight="0" android:gravity="bottom"/> </LinearLayout>
0