Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android系統教程 >> Android開發教程 >> Android開發入門(十)基本控件 10.1 TextView

Android開發入門(十)基本控件 10.1 TextView

編輯:Android開發教程

當你創建一個新的Android項目,Eclipse通常總是會創建main.xml文件,當中包含一個<TextView> 元素。

<?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="@string/hello" />    
       
</LinearLayout>

TextView用來給用戶展示文本信息。這是最基本的控件,當你開發Android 應用程序的時候,總是會使用到它。如果你希望用戶能夠修改文本信息,你也可以使用TextView的子類, EditText。

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