码迷,mamicode.com
首页 > 其他好文 > 详细

XML liner layout demo

时间:2014-07-26 01:04:16      阅读:354      评论:0      收藏:0      [点我收藏+]

标签:android   style   blog   http   color   io   width   re   

<?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:paddingLeft="16dp"
 
    android:paddingRight="16dp"
 
    android:orientation="vertical" >
 
    <EditText
 
        android:layout_width="fill_parent"
 
        android:layout_height="wrap_content"
 
        android:hint="to" />
 
    <EditText
 
        android:layout_width="fill_parent"
 
        android:layout_height="wrap_content"
 
        android:hint="subject" />
 
    <EditText
 
        android:layout_width="fill_parent"
 
        android:layout_height="0dp"
 
        android:layout_weight="1"
 
        android:gravity="top"
 
        android:hint="message" />
 
    <Button
 
        android:layout_width="100dp"
 
        android:layout_height="wrap_content"
 
        android:layout_gravity="right"
 
        android:text="@string/send" />
 
</LinearLayout>

 

XML liner layout demo,布布扣,bubuko.com

XML liner layout demo

标签:android   style   blog   http   color   io   width   re   

原文地址:http://www.cnblogs.com/oaks/p/3868746.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!