首页 > 其他 > 详细

线性布局中按钮在编辑框右边的布局方法

时间:2015-09-10 23:57:15      阅读:336      评论:0      收藏:0      [点我收藏+]
<LinearLayout
        android:id="@+id/pop_footprint_comment"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:layout_alignParentLeft="true"
        android:orientation="horizontal" >

        <EditText
            android:id="@+id/et_comment_content"
            android:layout_width="wrap_content"
            android:layout_height="40dp"
            android:layout_marginLeft="3dp"
            android:layout_weight="3"
            android:ems="10"
            android:hint="我是编辑框"
            android:padding="3dp" >
        </EditText>

        <Button
            android:id="@+id/btn_footprint_comment_send"
            android:layout_width="wrap_content"
            android:layout_height="40dp"
            android:layout_marginBottom="0dp"
            android:layout_weight="1"
            android:text="按钮" />
    </LinearLayout>

 

线性布局中按钮在编辑框右边的布局方法

原文:http://www.cnblogs.com/yaxiaoke/p/4799500.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!