android灵活布局

一开始接触android,只知道拖拉布局,不灵活,难看很。后来才发现,原来和jsp一样,可以灵活使用xml文件。

话不多说,直接上例子

任何布局既可以在代码中实现,也可以在xml中实现。下面是用xml实现的一个例子

 

src文件中

layout目录下,新建test_layout.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >
    <TableLayout
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:stretchColumns="1"
        >
        <TableRow >
            <TextView
                android:text="ceshi"
                android:id="@+id/layoutTextView01"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:textColor="#ffff"
                >
               
            </TextView>
            <EditText
                android:text=""
                android:id="@+id/EditText01"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
               
                />
           
        </TableRow>
        <TableRow android:gravity="right">
            <Button
                android:text="test"
                android:id="@+id/layoutButton1"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                />
           
        </TableRow>
       
    </TableLayout>

</LinearLayout>


 

 

android灵活布局,,5-wow.com

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。