程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程解疑 >> 需求-關於android:我想在textview 最後動態添加圖片. 應該怎麼做

需求-關於android:我想在textview 最後動態添加圖片. 應該怎麼做

編輯:編程解疑
關於android:我想在textview 最後動態添加圖片. 應該怎麼做

現在我只能把圖片顯示在文字的右邊

Drawable drawable= context.getResources().getDrawable(R.anim.curplay_anim);
drawable.setBounds(0, 0, drawable.getMinimumWidth(), drawable.getMinimumHeight());
viewHolder.textView.setCompoundDrawables(null,null,drawable,null);
playingAnimation = (AnimationDrawable) viewHolder.textView.getCompoundDrawables()[2];

加了判斷語句,所以是根據需求顯示圖片的..我應該怎麼改才能顯示在整個textview的最右邊呢?謝謝
PS:是textview內部額

最佳回答:


我自己已經解決了..在textview的布局裡面加上 android:drawableRight="@anim/curplay_anim"

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved