问题标签 [android-ion]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
java - Passing Array of Strings to another activity to use with ion
I have ListView
and i uses ion library to load images in he rows
of it, When i tap on any row
i take the data on the row
like TextView
and display it in activity using Intent
Sender Activity
Receiver Activity
Now I have different ImageView
in every row
in the ListView
and i want to display that image in the activity with the text using ion library, So i have Array
of String
named thumbUrl
contains the urls
that i want to display in the row
and activity
.
Ion in Sender Activity
So i tried to send that thumbUrl
Array
using Bundle
and Intent
like this:
and receive it like this:
Ion in Receiver Activity
But it's gives me that exception
So what to do right now?
Sorry for that messy problem but am just a beginner and that's my first time to deal with apps like that.
android - 透明图像(gif)在 ViewPager 中具有黑色背景
我有具有 ViewPager 的片段:
适配器:
如果图像是透明的,则它具有黑色背景。为片段根视图或活动根视图设置白色背景没有帮助。
android - 使用 ion 将图像加载到 android imageView 会返回模糊的结果
我正在尝试将图像从文件系统加载到带有离子库的 imageView 中。
当我使用以下代码时:
它(有时)会导致一种模糊的图像。
当不使用离子时,如下图清晰显示:
我可以禁用离子的标准压缩吗?
奇怪的是,使用 ion 时并非每张图片都是模糊的,例如,我有两个相同的图像,只有另一个名称。当我用离子将它们加载到 imageView 中时,一个是模糊的,一个不是。
任何帮助或提示表示赞赏!
php - 如何使用 Android ion 库发布数组数据?
我正在使用 Ion 库以字符串名称/值对的形式在服务器数据库上发布数据并获取 JSON 响应。假设您在数据库中有一个具有属性“x”和“y”(例如 varchars)的表“A”,因此您可以在表中发布这样的记录:
我想一次发布一些要插入到表中的记录,我正在做的是:
如果有人熟悉 ion ,请指导我。这是 Ion 的 github 项目的链接:https ://github.com/koush/ion
android - Ion POST 作为 url 参数而不是 JSON 正文 Android
我想使用参数而不是 JSON 正文 POST 到我的服务器 API。
我可以实现这个:
但是我想通过 POST 到http://someserver.com/transaction/<u_id>/<emp_id>/22.56/88.45/5/10/cash/init
我的服务器准备处理参数的位置来实现相同的目的。
不管怎样,Koushik Dutta (@koush) 这个库很棒而且是异步的。爱它。
android - 离子儿子无法从本地主机解析 Json
我在 android studio 中的一段代码已经可靠地工作了数周。每当我尝试通过 localhost 接收 Json(用于在模拟器或我的设备上进行调试并通过 wifi 连接)时,我都会收到错误消息:
com.google.gson.JsonParseException:无法解析 json
但是,如果我连接到远程服务器以获取 JSON Echo,例如:
http://echo.jsontest.com/insert-key-here/insert-value-here/key/value
没有问题。
我已经验证 JSON 是有效的,就像我说它以前对我有用,但我已经在网上仔细检查了它,我什至用一个按钮和一个请求创建了一个新的基本应用程序,但仍然有同样的问题。
代码如下:
}
JSON响应是:
此外,如果我从计算机上的任何其他应用程序(visualJSON、chromeAdvancedRestClient、safari、firefox 等)访问相同的 localhost 地址,它工作正常并且响应符合预期。
谁能告诉我这是怎么回事??
谢谢
android - Ion Android 和错误的 URL
我正在使用适用于 Android 的 Ion 库https://github.com/koush/ion
我从服务器下载文件,当我传递不在服务器上的文件的 url 时,它无论如何都会保存在 sd 卡上。为了清楚起见,假设我有以下网址:https ://example.com/img/img_3.jpg但没有这样的文件。所以实际上这个 url 是 404 Not Found,但是 ion 在我的 SD 卡上创建了一个文件 img_3.jpg。当我打开图像时,它是空白的。我试图检查下载的文件是否为空,但不是。那么有没有可能禁止 ion 从不存在的 URL 下载。
这是我的代码:
java - 在意图服务中使用 ion 进行 http 调用会在数据网络上出现错误
我正在使用 intentService 与 Ion 进行 http 调用。在 Wifi 上它运行良好,但是当我切换到数据网络时,事情开始中断。
以上是我在 IntentService 中使用的代码,我收到“java.io.IOException:non 2xx status line:HTTP/1.1 500 internal server error”。