0

I just wanted to insert an image in linear layout similar to thisenter image description here Can anyone help me with this???

4

3 回答 3

1

您可能正在寻找ImageButton,因为您的图片显示了类似的内容。

或者,看看ImageView

于 2013-11-04T12:54:20.580 回答
0

将布局的方向设置为水平,然后在xml中添加4个图像,一个接一个,添加像image1,image2等id,然后在你的onCreate中调用它们像ImageView图像

ImageView image1 = (ImageView) findViewById(R.id.image1)

依此类推,然后您可以在 yoru xml 中设置“src”属性,或者说 image1.setImageBitmap 或 ImageView 类中可用的任何其他方法,以从 res/drawable/ 中设置您想要的图像

于 2013-11-04T12:54:28.800 回答
0

您可以在水平 LinearLayout 中使用 ImageButton 制作 ImageButton @null 的背景,然后在它们之间放置边距

于 2013-11-04T13:12:42.157 回答