是否可以在ImageView中显示多个drawable(在它们之间有边距)而不使用框架布局+任何不必要的嵌套?如何实现以下目标?
drawableA
和drawableB
在结尾/右边有10dp的保证金XML
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<ImageView
android:id="@+id/myImgView"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<TextView
android:id="@+id/myTxtView"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</LinearLayout>
爪哇
Resources r = getContext().getResources();
int tenDp = (int) TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP, 10, r.getDisplayMetrics());
ImageView customIV = content.findViewById(R.id.myImgView);
Drawable drawableA = getResources().getDrawable(R.drawable.ic_happyface);
Drawable drawableB = getResources().getDrawable(R.drawable.ic_neutralface);
Drawable drawableC = getResources().getDrawable(R.drawable.ic_sadface);
customIV.addView(?);
答案 0 :(得分:1)
ImageView
只包含一个Drawable
。需要多个ImageViews
才能显示多个Drawable
。
您可以将LinearLayout
替换为RelativeLayout
,以避免嵌套。