源码网商城,靠谱的源码在线交易网站 我的订单 购物车 帮助

源码网商城

Android代码实现图片和文字上下布局

  • 时间:2021-12-17 11:23 编辑: 来源: 阅读:
  • 扫一扫,手机访问
摘要:Android代码实现图片和文字上下布局
在Android开发中经常会需要用到带文字和图片的button,下面来给大家介绍使用radiobutton实现图片和文字上下布局或左右布局。代码很简单就不给大家多解释了。 布局文件很简单,用来展示RadioBUtton的使用方法。
<?xml version="." encoding="utf-"?>
 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
   android:layout_width="match_parent"
   android:layout_height="match_parent"
   android:orientation="vertical" >
   <RadioButton
     android:layout_width="wrap_content"
     android:layout_height="wrap_content"
     android:layout_centerInParent="true"
     android:button="@null"
     android:drawableTop="@drawable/ic_launcher"
     android:text="Test Button" />
 </RelativeLayout>
效果图如下 [img]http://files.jb51.net/file_images/article/201511/2015111614585714.png[/img] 以上代码我没有写注释,相信大家都可以看懂吧,关于以上代码有任何问题欢迎给我留言,我会在第一时间和大家联系的。谢谢大家。
  • 全部评论(0)
联系客服
客服电话:
400-000-3129
微信版

扫一扫进微信版
返回顶部