作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在做一个基本的 Android Studio 项目,使用 Picasso 和 Kotlin 将 URL 加载到 ImageView 中。我已经按照 Picasso 官方网页上的每一步操作,但是当我运行我的应用程序时,模拟器显示一个空 View 。
在我的 Gradle 中,我添加了 Picasso 的实现:
implementation 'com.squareup.picasso:picasso:2.71828'
还有 manifest 标签中的 Internet 权限:
<uses-permission android:name="android.permission.INTERNET"/>
而在MainActivity
中Picasso的基本使用:
Picasso.get().load("http://paproject.online/hp.jpg").into(imageTest)
imageTest
是 Imageview
的 ID,具有 layout_height = 200dp
和 layout_weight = 200dp
。
最佳答案
也许你的照片太大了,所以在 XML
的 ImageView
标签中将 layout_width
和 layout_height
修改为 Const大小如 100dp。
如果你能用 Glide 改变 Picasso .也许可以帮助你
关于android - picasso 不在 MainActivity 中加载 View ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55327000/
我正在开发一个需要能够平均三个数字的 Facebook 应用程序。但是,它总是返回 0 作为答案。这是我的代码: $y = 100; $n = 250; $m = 300; $number = ($y
我只是无法弄清楚这一点,也找不到任何对我来说有意义的类似问题。我的问题:我从数据库中提取记录,并在我的网页上以每个面板 12 条的倍数显示它们。因此,我需要知道有多少个面板可以使用 JavaScrip
我是一名优秀的程序员,十分优秀!