91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

Android button如何加圖片

小億
344
2023-09-27 19:40:24
欄目: 編程語言

在Android中,你可以通過設置Button的背景來加入圖片。以下是加入圖片的幾種方式:

  1. 在XML布局文件中設置Button的背景為圖片資源:
<Button
android:id="@+id/button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/image" />

其中,@drawable/image表示圖片資源的引用,你需要將圖片文件放置在res/drawable目錄下。

  1. 在Java代碼中設置Button的背景為圖片資源:
Button button = findViewById(R.id.button);
button.setBackgroundResource(R.drawable.image);
  1. 使用android:drawableLeftandroid:drawableRightandroid:drawableTopandroid: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替換為你的圖片資源。

  1. 通過代碼設置Button的圖片:
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的方法,你可以根據具體需求選擇適合的方式。

0
松江区| 疏勒县| 枣庄市| 洪湖市| 霍州市| 平山县| 定边县| 罗山县| 神木县| 文登市| 正安县| 行唐县| 资兴市| 岑溪市| 台湾省| 浦江县| 荆州市| 宣威市| 滦平县| 招远市| 宜黄县| 来宾市| 凤阳县| 崇明县| 东台市| 闵行区| 隆化县| 玛曲县| 江陵县| 昌平区| 荃湾区| 南漳县| 阿克陶县| 江津市| 梅河口市| 镇原县| 灵宝市| 论坛| 东台市| 渝中区| 新沂市|