最近去了一家新公司,然后开始做新的项目,看其代码发现了一个很巧妙的方法来实现图片在上面文字在下面的布局方式。只需要一个控件——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>
效果图如下
简直就是Perfect啊。