Is alignment working in HTML.fromHtml() in a TextView?
I tried
Test
and
Although it is possible to use alignment using a webview instead of a TextView, and loading the html from a file placed in assets:
public class ViewWeb extends Activity {
WebView webview;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.webview);
webview = (WebView) findViewById(R.id.webView1);
webview.loadUrl("file:///android_asset/index.html");
}
}