您好,登錄后才能下訂單哦!
給大家提供一些方法,大家可以直接拿去使用,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"
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。