中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

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
宝坻区| 海口市| 鹿邑县| 会东县| 双牌县| 定安县| 永泰县| 平安县| 汤原县| 寻乌县| 文水县| 巴林左旗| 永康市| 常德市| 石渠县| 临湘市| 新宁县| 新巴尔虎右旗| 吉安市| 义乌市| 化德县| 西吉县| 岳西县| 新闻| 贵溪市| 辉南县| 湖口县| 南部县| 衡水市| 灵璧县| 鹤山市| 平塘县| 敦化市| 潮安县| 许昌县| 上饶市| 长兴县| 随州市| 秦安县| 洛隆县| 牙克石市|