在androID中的webvIEw中,可以对文本内容进行对齐,具体方法如下
public class MainActivity extends Activity { @OverrIDe protected voID onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentVIEw(R.layout.activity_main); String HTMLText = " %s "; String myData = "Hello World! This tutorial is to show demo of displaying text with justify alignment in WebVIEw."; WebVIEw webVIEw = (WebVIEw) findVIEwByID(R.ID.webVIEw1); webVIEw.loadData(String.format(HTMLText,myData),"text/HTML","utf-8"); } }
activity_main.xml:
<relativeLayout xmlns:androID="http://schemas.androID.com/apk/res/androID" xmlns:tools="http://schemas.androID.com/tools" androID:layout_wIDth="match_parent" androID:layout_height="match_parent" tools:context=".MainActivity" > <WebVIEw androID:ID="@+ID/webVIEw1" androID:layout_wIDth="match_parent" androID:layout_height="match_parent"/> </relativeLayout>
感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!
总结以上是内存溢出为你收集整理的Android 中的两端对齐实例详解全部内容,希望文章能够帮你解决Android 中的两端对齐实例详解所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)