Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> 關於Android編程 >> android靈活布局

android靈活布局

編輯:關於Android編程

一開始接觸android,只知道拖拉布局,不靈活,難看很。後來才發現,原來和jsp一樣,可以靈活使用xml文件。

話不多說,直接上例子

任何布局既可以在代碼中實現,也可以在xml中實現。下面是用xml實現的一個例子

在src文件中

\

在layout目錄下,新建test_layout.xml<喎?/kf/ware/vc/" target="_blank" class="keylink">vcD4KPHA+PD94bWwgdmVyc2lvbj0="1.0" encoding="utf-8"?>
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:stretchColumns="1"
>

android:text="ceshi"
android:id="@+id/layoutTextView01"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="#ffff"
>


android:text=""
android:id="@+id/EditText01"
android:layout_width="wrap_content"
android:layout_height="wrap_content"

/>



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