我需要帮助。我试图使用滑行从服务器获取我的图像,但我不知道如何?请构建我的代码,以便Glide工作或给我任何其他可能的解决方案。我只想用Glide和JSON显示图像列表视图,JSON结果来自我的PHP脚本。我能够获取除图像之外的其他数据。这是我的代码。我应该在哪里滑行?
public class list extends ListActivity {
private static final String TAG_POST= "posts";
private static final String TAG_ID="lecID";
private static final String TAG_NAME="lecName";
private static final String TAG_EMAIL="lecEmail";
private static final String TAG_PASS="lecPass";
private static final String TAG_IMAGE="image";
private static final String LECTURER_LIST_URL="http://system.com/list.php";
private JSONArray mComments =null;
private ArrayList<HashMap<String,String>> mcommentList;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.list_view);
ImageView imageView=(ImageView)findViewById(R.id.lec_Image);
//upload is the folder to store my image
String leciv="http://fypesystem.com/upload/";
Glide.with(this).load(leciv)
.thumbnail(0.5f)
.into(imageView);
你的帮助非常感谢。
答案 0 :(得分:3)
public static void LoadImage(Context cx,ImageView imageView,int demoImage,String url) {
if (!((Activity) cx).isFinishing()){
Glide.with(cx)
.load(url)
.diskCacheStrategy(DiskCacheStrategy.SOURCE)
.placeholder(demoImage)
.into(imageView);
}
}
cx是上下文demoImage是图像,显示图像加载,Url是您从JSON获取的图像路径。
答案 1 :(得分:2)
您必须创建一个自定义适配器,并将您想要用于适配器和活动上下文的json和布局创建的列表传递给该适配器。 之后,如果您使用listview而不是listview的getView()函数,请添加此代码,其中url应该是您存储在列表中的值,这样
String url = mcommentList.get(position).get(TAG_IMAGE);
myImageView应该是您传递适配器的布局中的图像
Glide.with(上下文) .load(URL) .placeholder(R.drawable.ic_launcher) .into(myImageView);
您可以查看此链接以获取帮助
https://www.journaldev.com/10416/android-listview-with-custom-adapter-example-tutorial
答案 2 :(得分:0)
更改这些行特别是URL。
ImageView imageView=(ImageView)findViewById(R.id.lec_Image);
//upload is the folder to store my image
String leciv="http://fypesystem.com/upload/9c419dd5659b0af4d14f642f454dcb07.jpg";
Glide.with(this).load(leciv)
.thumbnail(0.5f)
.into(imageView);