I took this and paste in a new android, with a few changed in other files, it didn't type anything in the applicatin, like this http://ift.tt/XqPe8V ... does anyone know why?
package com.f.fa;
import android.os.Bundle;
import android.app.Activity;
import android.webkit.WebView;
public class PageAbus extends Activity
{
@Override
protected void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.abus);
String text = "<html><body style=\"text-align:justify\"> %s </body></Html>";
String data = "The power of theory lies in its ability to spare us from doing useless things. The power of theory lies in its ability to spare us from doing useless things.";
WebView webView = (WebView) findViewById(R.id.abussort);
webView.loadData(String.format(text, data), "text/html", "utf-8");
}
}
No comments:
Post a Comment