我有以下显示图像和文本字符串的布局:
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:gravity="center" >
<ImageView
android:id="@+id/ivIcon"
android:layout_width="@dimen/number_icon"
android:layout_height="@dimen/number_icon"
android:scaleType="fitXY"
android:layout_marginTop="@dimen/letter_icon_margin_top" />
<Button
android:id="@+id/btnNumber"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_margin="5dp"
android:layout_weight="3"
android:text=""
android:gravity="center"
android:textSize="@dimen/word_size_text"
android:textColor="#000000"
android:textStyle="bold"
android:background="@drawable/borderaction" />
</LinearLayout>
这ivIcon
是根据用户输入显示图像。每个字母显示一个图像时效果很好。但是我如何修复上述布局,以便根据用户选择显示图像数量。
@dimen
用于根据屏幕改变视图大小。
例如,这就是我将它用于字母时的样子:
对于数字,如果用户选择5
显示应该是:
如果用户选择1
显示应该是:
设置字母图像的代码是:
ivLetterIcon = (ImageView) findViewById(R.id.ivIcon);
ivLetterIcon.setImageResource(R.drawable.apple);
我将如何完成数字图像?
最好有一个没有图像的空白布局,并根据数量在运行时添加 ImageView 并使其居中?这样图像以父视图布局为中心?