xml designe 在底部放置一个Button

</pre><pre name="code" class="html">关键是:使用 RelativeLayout 布局,然后在 Button 里面android:layout_alignParentBottom= "true" 
代码如下:
   <!-- 在底部放置一个Button -->
         <RelativeLayout
			    android:layout_width="match_parent"      
			    android:layout_height="wrap_content"
			    android:layout_margin="6dp"
			    android:orientation = "vertical"
			    android:layout_weight="1" 
			    android:layout_marginTop="10dp">
               <Button
                   android:id="@+id/button_login"
                   android:layout_width="fill_parent"
                   android:layout_height="40dp"
                   android:drawableRight="@drawable/next"
                   android:maxLength="7"
                   android:paddingRight="5dp"     //内部内容与 边框距离
                   android:layout_margin="5dip"   //本边框 与外部的距离
                   android:text="@string/next"
                   android:textColor="@color/white"
                   android:layout_alignParentBottom= "true"          //关键:与父layout 底部对其
                   android:background="@drawable/button_selector2"
                   android:textSize="20sp" />
       </RelativeLayout>

相关文章

引言 NOKIA 有句著名的广告语:“科技以人为本”。任何技术都是为了满足人的生产生活需要而产生的。具体...
Writer:BYSocket(泥沙砖瓦浆木匠) 微博:BYSocket 豆瓣:BYSocket Reprint it anywhere u want. 文章...
Writer:BYSocket(泥沙砖瓦浆木匠) 微博:BYSocket 豆瓣:BYSocket Reprint it anywhere u want. 文章...
http://blog.jobbole.com/79252/ 引言 NOKIA 有句著名的广告语:“科技以人为本”。任何技术都是为了满...
(点击上方公众号,可快速关注) 公众号:smart_android 作者:耿广龙|loonggg 点击“阅读原文”,可查看...
一、xml与xslt 相信所有人对xml都不陌生,其被广泛的应用于数据数据传输、保存与序列化中,是一种极为强...