对于我的Android应用程序,我希望使用JSON从远程MySQL数据库加载图像到Gallery View。 是否有可能。
可能意味着任何人都可以根据此
帮助我提供一些示例代码答案 0 :(得分:1)
这是可能的。首先,您需要将图像URL保存在远程服务器中。这可以通过使用JSON或任何其他模式的api调用来实现。通过该API,您可以检索保存在远程数据库上的图像URL。获取所有图像网址后,您可以使用Lazy load of images in ListView加载图像。在LazyLoading代码中,他们在布局中使用了ListView,因此图像和相应的文本显示为列表项,您可以将ListView更改为如下所示的库:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<Gallery android:id="@+id/gallery" android:layout_width="fill_parent"
android:layout_height="wrap_content" />
<Button
android:id="@+id/button1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Clear Cache"/>
</LinearLayout>
我认为这会让你得到理想的结果。