現在我只能把圖片顯示在文字的右邊
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"