Android 巧妙实现图片和文字上下布局或者左右布局

最近去了一家新公司,然后开始做新的项目,看其代码发现了一个很巧妙的方法来实现图片在上面文字在下面的布局方式。只需要一个控件——RadioButton。

布局文件很简单,用来展示RadioBUtton的使用方法。

 <?xml version="1.0" encoding="utf-8"?>
<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>

效果图如下

Android 巧妙实现图片和文字上下布局或者左右布局

简直就是Perfect啊。

上一篇:Android TextView自己主动换行文字排版參差不齐的原因


下一篇:android TextView 例子代码(文字中划线、文字下划线)