Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> 關於Android編程 >> Android代碼實現圖片和文字上下布局

Android代碼實現圖片和文字上下布局

編輯:關於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>

效果圖如下

以上代碼我沒有寫注釋,相信大家都可以看懂吧,關於以上代碼有任何問題歡迎給我留言,我會在第一時間和大家聯系的。謝謝大家。

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved