1 .android的ImageButton標籤是沒有text屬性的,那麼咱們要在一個ImageButton裏放置文字怎麼辦呢?java
先上效果圖以下:android
若是咱們不設置背景效果以下:可是給人的感受就行分離的兩個組件:app
咱們能夠繼承LinearLayout自定義標籤:ImageButton_define.javaide
package com.test; import android.content.Context; import android.util.AttributeSet; import android.widget.ImageView; import android.widget.LinearLayout; import android.widget.TextView; public class ImageButton_define extends LinearLayout { private ImageView imageViewbutton; private TextView textView; public ImageButton_define(Context context,AttributeSet attrs) { super(context,attrs); // TODO Auto-generated constructor stub imageViewbutton = new ImageView(context, attrs); imageViewbutton.setPadding(0, 0, 0, 0); textView =new TextView(context, attrs); //水平居中 textView.setGravity(android.view.Gravity.CENTER_HORIZONTAL); textView.setPadding(0, 0, 0, 0); setClickable(true); setFocusable(true); setBackgroundResource(android.R.drawable.btn_default); setOrientation(LinearLayout.VERTICAL); addView(imageViewbutton); addView(textView); } }
2。接下來定義佈局文件:佈局
這個不就文件使用的標籤就是咱們上面自定義的標籤:以下:text.xmlspa
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="wrap_content" android:layout_height="wrap_content"> <com.test.ImageButton_define android:id="@+id/define_iamgebutton" android:layout_width="fill_parent" android:layout_height="fill_parent" android:src="@drawable/android" android:background="#00000000" android:text="圖片文本" android:textColor="#cc0000" > </com.test.ImageButton_define> </LinearLayout>
以後咱們定義個activity,引入咱們定義的佈局文件資源:ImageButton_de.javacode
package com.test; import android.app.Activity; import android.os.Bundle; public class ImageButton_de extends Activity { @Override protected void onCreate(Bundle savedInstanceState) { // TODO Auto-generated method stub super.onCreate(savedInstanceState); setContentView(R.layout.test); } }
方法二:xml
定義佈局文件:繼承
<Button android:id="@+id/button_text" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="標題" android:drawableLeft="@drawable/android" />
運行效果:
圖片