gpt4 book ai didi

android - 如何将多个图像加载到 android 图片库中?

转载 作者:行者123 更新时间:2023-11-30 03:12:04 25 4
gpt4 key购买 nike

我想从 URL 将大量图像加载到我的图库中。目前它们存储在可绘制目录中,但我想从 http://i200.photobucket.com/albums/aa216/example/color.jpg 这样的 URL 链接加载它们而不是@drawable/image1

这是我的代码。

主.xml

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >

<ViewFlipper
android:id="@+id/view_flipper"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >


<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent" >

<ImageView
android:id="@+id/imageView1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_gravity="center"
android:adjustViewBounds="true"
android:scaleType="centerCrop"

/>

<TextView
style="@style/ImageTitle"
android:text="@string/image1" />
</RelativeLayout>

<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent" >

<ImageView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_gravity="center"
android:adjustViewBounds="true"
android:scaleType="centerCrop"
android:src="@drawable/image2" />

<TextView
style="@style/ImageTitle"
android:text="@string/image2" />
</RelativeLayout>

<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent" >

<ImageView
android:id="@+id/imageView1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_gravity="center"
android:adjustViewBounds="true"
android:scaleType="centerCrop"
android:src="@drawable/image3" />

<TextView
style="@style/ImageTitle"
android:text="@string/image3" />
</RelativeLayout>

<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent" >

<ImageView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_gravity="center"
android:adjustViewBounds="true"
android:scaleType="centerCrop"
android:src="@drawable/image4" />

<TextView
style="@style/ImageTitle"
android:text="@string/image4" />
</RelativeLayout>
</ViewFlipper>

<LinearLayout
style="@style/ButtonContainer"
android:orientation="horizontal" >

<Button
android:id="@+id/play"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginRight="10dp"
android:background="@drawable/media_play" />

<Button
android:id="@+id/stop"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/media_pause" />
</LinearLayout>

<ImageView
android:id="@+id/swipe_left"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_centerVertical="true"
android:src="@drawable/arrowleft" />

<ImageView
android:id="@+id/swipe_right"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_centerVertical="true"
android:src="@drawable/arrowright" />

</RelativeLayout>

最佳答案

阿联酋 UniversalImageLoader来自 Github 的图书馆。

将项目下载为 zip 并将库导入项目中。然后从你的java类,

ImageView imageView = (ImageView) findViewById(R.id.your_view) 
String imageUrl = "your_url";
ImageLoader imageLoader = ImageLoader.getInstance();
imageLoader.init(ImageLoaderConfiguration.createDefault(context));
imageLoader.displayImage(imageUrl, imageView);

关于android - 如何将多个图像加载到 android 图片库中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20779972/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com