In Android, by using Android button drawable we can set text position to be below, top, right or left of the button. According to the image size & view we can also set the image to any side.

Android Button Drawable Example :-

[sourcecode language="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">
<Button android:id="@+id/Button01"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:drawableLeft="@drawable/icon"
android:text="Drawable Left" />
<Button android:id="@+id/Button02"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:drawableRight="@drawable/icon"
android:text="Drawable Right" />
<Button android:id="@+id/Button03"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:drawableTop="@drawable/icon"
android:text="Drawable Top" />
<Button android:id="@+id/Button04"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:drawableBottom="@drawable/icon"
android:text="Drawable Bottom" />
</LinearLayout>

[/sourcecode]

The output will look like

更多相关文章

  1. 代码中设置drawableleft
  2. android 3.0 隐藏 系统标题栏
  3. Android开发中activity切换动画的实现
  4. Android(安卓)学习 笔记_05. 文件下载
  5. Android中直播视频技术探究之—摄像头Camera视频源数据采集解析
  6. 技术博客汇总
  7. android 2.3 wifi (一)
  8. AndRoid Notification的清空和修改
  9. Android中的Chronometer

随机推荐

  1. Android模块化(二)——模块通信和模块间服
  2. Android知识体系总结之Android部分之Andr
  3. Android(安卓)NDK开发篇(一):新版NDK环境
  4. Android初识多线程
  5. 内容提供者相关技术
  6. AsyncTask 学习翻译并总结
  7. android XML解析技术
  8. Ubuntu 14.04 LTS 安装 文泉驿微米黑 字
  9. 子线程新建Handler为什么会报错?——浅谈H
  10. Android(安卓)Jni 开发(Android(安卓)stud