在Android中,你可以通過設置Button的背景來加入圖片。以下是加入圖片的幾種方式:
<Button
android:id="@+id/button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/image" />
其中,@drawable/image
表示圖片資源的引用,你需要將圖片文件放置在res/drawable
目錄下。
Button button = findViewById(R.id.button);
button.setBackgroundResource(R.drawable.image);
android:drawableLeft
、android:drawableRight
、android:drawableTop
或android:drawableBottom
屬性將圖片與文字一起顯示在Button上:<Button
android:id="@+id/button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button"
android:drawableLeft="@drawable/image" />
你可以將@drawable/image
替換為你的圖片資源。
Button button = findViewById(R.id.button);
Drawable image = getResources().getDrawable(R.drawable.image);
button.setCompoundDrawablesWithIntrinsicBounds(image, null, null, null);
這里的R.drawable.image
表示圖片資源的引用,你需要將圖片文件放置在res/drawable
目錄下。
以上是幾種常見的添加圖片到Button的方法,你可以根據具體需求選擇適合的方式。