我正在尝试Glide,因为我听说它太棒了。但是我无法从URL加载任何图像。这是我的布局:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/activity_main"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context="com.example.i58740.myapplication.MainActivity">
<ImageView
android:id="@+id/image"
android:layout_width="500px"
android:layout_height="500px"
android:visibility="visible" />
</RelativeLayout>
这是我的活动:
package com.example.i58740.myapplication;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.widget.ImageView;
import com.bumptech.glide.Glide;
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
String imgUrl = "http://shirtoid.com/wp-content/uploads/2012/02/A-French-Ninja-Cat.jpg";
ImageView imageView = (ImageView) findViewById(R.id.image);
Glide.with(this).load(imgUrl).into(imageView);
}
}
最后,我在build.gradle中获得了这两个依赖项:
compile 'com.github.bumptech.glide:glide:3.7.0'
compile 'com.android.support:support-v4:24.2.1'
我还在AndroidManifest.xml中添加了互联网权限
<uses-permission android:name="android.permission.INTERNET" />
我已经看了几个教程和一些我读过的应该工作的东西。也没有错误或例外。上面代码段中的Url有效。我也尝试过许多其他我认为有效的网址,但仍无效。
答案 0 :(得分:0)
感谢Budius的建议,我找出了问题所在。我加倍检查以确保我确实添加了互联网权限并意识到它嵌套在&lt;应用程序&gt;标签。把它移到外面就解决了这个问题。