Android编程实现将ButtonBar放在屏幕底部的方法
程序员文章站
2023-12-11 19:06:46
本文实例讲述了android编程实现将buttonbar放在屏幕底部的方法。分享给大家供大家参考,具体如下:
前面一篇《android编程实现将tab选项卡放在屏幕底部的...
本文实例讲述了android编程实现将buttonbar放在屏幕底部的方法。分享给大家供大家参考,具体如下:
前面一篇《android编程实现将tab选项卡放在屏幕底部的方法》提到buttonbar的方式写底部button,试了试,看起来外观貌似比tab好看,不过恐怕没有tab管理activity方便吧,毕竟一 个tab就是一个activity,但是这样用button的话,却并不如此,所以这样的涉及可能虽然好看点,但是管理起来却是相当麻烦。那么暂且把对 activity的管理放在一边,只看界面的设计吧。
要涉及这样的一个buttonbar,主要就是要用到style="@android:style/buttonbar"这个风格。首先还是来看xml的设计,保存layout/bottombtn.xml
<?xml version="1.0" encoding="utf-8"?> <linearlayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent"> <textview android:layout_width="fill_parent" android:layout_height="wrap_content" android:id="@+id/textout" android:padding="5px" android:layout_weight="1"/> <linearlayout style="@android:style/buttonbar" android:layout_width="fill_parent" android:layout_height="wrap_content" android:orientation="horizontal"> <button android:id="@+id/button_weather" android:text="@string/bottom_weather" android:layout_width="0dip" android:layout_height="wrap_content" android:layout_weight="1"/> <button android:id="@+id/button_mail" android:text="@string/bottom_mail" android:layout_width="0dip" android:layout_height="wrap_content" android:layout_weight="1"/> <button android:id="@+id/button_train" android:text="@string/bottom_train" android:layout_width="0dip" android:layout_height="wrap_content" android:layout_weight="1"/> <button android:id="@+id/button_sites" android:text="@string/bottom_sites" android:layout_width="0dip" android:layout_height="wrap_content" android:layout_weight="1"/> <button android:id="@+id/button_stock" android:text="@string/bottom_stock" android:layout_width="0dip" android:layout_height="wrap_content" android:layout_weight="1"/> </linearlayout> </linearlayout>
然后就是关于这个的全部代码了:
package net.wangliping.popup; import android.app.activity; import android.os.bundle; import android.widget.textview; public class bottombtn extends activity { private static string log_tag = "bottombtn"; private textview tv; @override public void oncreate(bundle savedinstancestate) { super.oncreate(savedinstancestate); setcontentview(r.layout.bottombtn); tv = (textview)findviewbyid(r.id.textout); tv.settext("http://tools.wangliping.net"); } }
如此这般,就形成了下面的这个东西,虽然界面上看起来稍微美观一点,还是上面那句话:管理器activity不一定很方便哦。
更多关于android相关内容感兴趣的读者可查看本站专题:《android开发入门与进阶教程》、《android调试技巧与常见问题解决方法汇总》、《android基本组件用法总结》、《android视图view技巧总结》、《android布局layout技巧总结》及《android控件用法总结》
希望本文所述对大家android程序设计有所帮助。