【发布时间】:2014-03-25 13:11:53
【问题描述】:
大家好,我有一个关于在我的布局中添加图像的问题。
现在我已经下载了四张图片,但是我所有的图片都堆叠在一起,
我希望能够让它们彼此相邻,例如顶部 2 张图片和底部 2 张图片,最好的方法是什么?
现在我正在使用相对布局,我使用AsyncTask 来处理图像。
我的代码:
public class MainActivity extends Activity {
//String[] imgUrls = {getString(R.string.uncc_main_thumb),getString(R.string.football_main_thumb,getString(R.string.ifest_main_thumb),getString(R.string.commencement_main_thumb))};
String[] imgUrls={"http://farm5.staticflickr.com/4113/4843614620_c541de5a5c_m.jpg",
"http://farm8.staticflickr.com/7265/8151547298_85e60e7368_m.jpg",
"http://farm9.staticflickr.com/8054/8414075899_e87a74407b_m.jpg",
"http://farm9.staticflickr.com/8210/8277674769_7d1245dbf1_m.jpg"};
RelativeLayout root;
ProgressDialog progressDialog;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
root = (RelativeLayout) findViewById(R.id.RelativeLayout1);
for (String imgUrl : imgUrls) {
new DownLoadImages().execute(imgUrl);
}
}
private class DownLoadImages extends
AsyncTask<String, Void, Bitmap> {
@Override
protected Bitmap doInBackground(String... params) {
String imgUrl = params[0];
Bitmap image = null;
try {
URL url = new URL(imgUrl);
image = BitmapFactory.decodeStream(url.openStream());
} catch (MalformedURLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
return image;
}
@Override
protected void onPreExecute() {
super.onPreExecute();
// show the loading message while downloading the image
progressDialog = ProgressDialog.show(MainActivity.this,null, "loading...");
}
@Override
protected void onPostExecute(Bitmap result) {
if (result == null) {
result = ((BitmapDrawable) getResources().getDrawable(
R.drawable.not_found)).getBitmap();
}
ImageView imageViewToBeAdded = new ImageView(getBaseContext());
imageViewToBeAdded.setLayoutParams(new LayoutParams(
LayoutParams.MATCH_PARENT, LayoutParams.WRAP_CONTENT));
imageViewToBeAdded.setPadding(5, 5, 5, 5);
imageViewToBeAdded.setImageBitmap(result);
root.addView(imageViewToBeAdded);
}
}
}
【问题讨论】:
-
你读过android网站上的Linear和RelativeLayout吗?
-
你应该使用gridview
-
我认为 Nicko 的解决方案非常适合我的项目,因为我只需要在屏幕上显示 4 张图片,谢谢您的建议,我会定义的。查看视图 Page 和 gridview 以备将来使用。
-
使用 GridView 并将其列设置为 2.. 然后一行中只显示两个图像。