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

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

android textview在code(代碼)中設置圖片 和XML設置圖片

發布時間:2020-07-14 17:36:05 來源:網絡 閱讀:1976 作者:龍神號貴 欄目:移動開發

給大家提供一些方法,大家可以直接拿去使用,textview在code{代碼}中設置上下左右設置圖片。有幾種方法,這個給大家列舉一些。

下面方法建議放在util工具類中,其中的好處就不用我多講了。

 

,//資源ID public static void setTextDrawable(Context context, int drawableRes,//資源ID
   TextView tvName) {
  Drawable drawableTop = context.getResources().getDrawable(drawableRes);
  // 必須設置圖片大小,否則不顯示
  drawableTop.setBounds(0, 0, drawableTop.getMinimumWidth(),
    drawableTop.getMinimumHeight());
  tvName.setCompoundDrawables(null, drawableTop, null, null);
 }

//bitmap,

 public static void setTextDrawable(Context context, Bitmap bitmap,
   TextView tvName) {
  Drawable drawableTop = BitmapUtils.bitmap2Drawable(bitmap);
  // 必須設置圖片大小,否則不顯示
  drawableTop.setBounds(0, 0, drawableTop.getMinimumWidth(),
    drawableTop.getMinimumHeight());
  tvName.setCompoundDrawables(null, drawableTop, null, null);
 }


//網絡URL路徑

 public static void setTextDrawable(Context context, String url,
   final TextView textView) {
  ImageLoader.getInstance().loadImage(url, new ImageLoadingListener() {
   public void onLoadingStarted(String arg0, View arg1) {
   }

   public void onLoadingFailed(String arg0, View arg1, FailReason arg2) {
   }

   public void onLoadingComplete(String arg0, View arg1, Bitmap bitmap) {
    Drawable drawableTop = BitmapUtils.bitmap2Drawable(bitmap);
    // 必須設置圖片大小,否則不顯示
    drawableTop.setBounds(0, 0, drawableTop.getMinimumWidth(),
      drawableTop.getMinimumHeight());
    textView.setCompoundDrawables(null, drawableTop, null, null);
   }

   public void onLoadingCancelled(String arg0, View arg1) {
   }
  });
 }

以上共有三個方法,每個方法針對的要設置的都不相同。若有其他問題,希望各位大神多多指點。


如果要是想之間在XML中設置圖片的話,那只需要一句話就可以了        android:drawableTop="@drawable/ic_launcher"


向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

宁化县| 安国市| 新和县| 资讯| 松桃| 磴口县| 莲花县| 礼泉县| 油尖旺区| 得荣县| 牡丹江市| 策勒县| 广德县| 甘孜县| 盘山县| 文昌市| 临夏市| 托里县| 时尚| 石屏县| 永寿县| 定安县| 香格里拉县| 万源市| 繁昌县| 扬中市| 乌拉特中旗| 平谷区| 耿马| 乐都县| 都匀市| 凤庆县| 扎鲁特旗| 家居| 乌鲁木齐市| 哈巴河县| 洛宁县| 大新县| 富锦市| 玛沁县| 龙海市|