Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> 關於Android編程 >> Android 中的兩端對齊實例詳解

Android 中的兩端對齊實例詳解

編輯:關於Android編程

  在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> 

感謝閱讀,希望能幫助到大家,謝謝大家對本站的支持!

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved