问题标签 [android-4.4-kitkat]
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.
android - 设置 Android 4.4 kitkat 模拟器
我正在尝试使用 AVD 管理器设置 android kitkat 4.4 模拟器。我看到一个选择 API 级别的选项,但我在设备列表下看不到兼容设备。如果我尝试使用 Nexus 10,模拟器会运行,但不会显示任何内容。所以,当我检查 stackoverflow 时,我知道很多人都在运行这样的模拟器:
但是我的问题是什么?我确实给了它足够的属性以便它可以正常工作(比如 VM 空间),但我知道 Kitkat 也可以在内存受限的设备上工作(如 youtube 上的 dev bytes 所示),所以我想这不是问题。简而言之,我如何专门为 Android 手机(不是平板电脑)设置一个模拟器,最好是为 google nexus 5。任何指导或帮助将不胜感激。
android - 如何获取图像缓存表单android-4.4 WebView
当我访问一个网站(包含一些文本和一些图像)时,/data/data/com.mayexample/app_webview/Cache 中的缓存目录会充满一些名为 4f42185de3a3a461_0、4f42185de3a3a461_1、et4f42185de3a3a461_2 等的文件。我做不到任何与缓存文件有关的东西。你知道打开 webview 缓存文件的方法吗?例如,一个文件不是代表相应的缓存图像吗?谢谢!
android - 为 Android API 19 开发时的 Android“字符串错误”?
所以,我正在使用Android进行开发。我想知道,这段代码有什么问题?在res/layout目录中的activity_main.xml上,在图形布局编辑器中,它给了我这个错误:
字符串:
布局:
android - Android 4.4 KitKat 模拟器未启动
我正在为 Android 4.4 KitKat 创建一个模拟器,但模拟器需要很长时间并且无法启动。我尝试了许多设备,例如 Nexus4、Galaxy Nexus、Nexus S 等,但都没有奏效。只是一个带有android标志的黑屏很长一段时间。有什么建议么?
android - android 4.4 上的自定义字体渲染有空心透明文本
我的一个应用程序在 android 4.4 上发生了一些奇怪的事情。我正在使用自定义视图,在其中设置自定义字体Typeface.createFromAsset
。如上图所示,渲染在设备/模拟器上运行良好。当我将自定义视图的内容保存为位图时出现问题:
在 android < 4.4 上一切正常。保存的图像看起来与屏幕上可见的图像相同。但是,在 4.4 上,我只看到字体边框,文本内部是透明的。我怎样才能解决这个问题 ?
android - Making Host Card Emulation work for payment
I've been using StackOverflow for years now, always finding answers to my questions before even asking them, but today I'm stuck.
As I happen to have a working POS terminal (the EMV Chip&Pin kind), I wanted to look into host card emulation.
The terminal works with the latest version of Tapp, so I know that the terminal is good and that my N7 with Kitkat can actually do payment (or at least the terminal do a series of good sounding bleeps and bloops, and the tablet launch Tapp's enrollment screen).
So I've read the manual(s) and written a bunch of lines with the objective of seeing something arrive on my HostApduService
.
It partially works as I can find my dummy "card" in the Tap&Pay settings of the tablet.
But the "payment" part doesn't work: just two high-pitched bleeps from the POS terminal and nothing on the tablet. My HostApduService
is not called.
I've tried all kind of different AIDs: real ones and silly ones, short and long, but nothing works.
When using Tapp, the LogCat says :
And with my code, the LogCat is :
Obviously with my code, the OS doesn't bind the HCE intent to my service. But why?
You'll find below my manifest :
my apduservice.xml :
And for good measure, the service (as you can see at the moment, it does nothing except Logging) :
If you have ideas on why it doesn't work, I'll be forever grateful. For now, I'm stumped.
Regards
Philippe
android - Android ImageView 中的透明 GIF
我试图在我的应用程序中显示透明的 GIF 图像,但没有成功。我可以下载并在 ImageView 中显示图标,但使用白色背景而不是透明。
我已经尝试过这些解决方案但没有成功: Convert GIF to PNG programatically
有没有人想出如何以透明度显示 GIF 图像?我正在使用 Android 18 SDK。
android - hal_process_report_ind: Bad item quality: 11 是什么意思?
我已经从这个问题中确定了错误
不是立即担心的事情。但有谁知道它来自什么或它意味着什么?具体来说,什么是hal?(除了“我很抱歉我不能那样做,戴夫。”)可能出了什么问题?永远不知道我什么时候会在气闸外面靠手机让我进去……
这是详细的 eclipse 日志中的一些上下文,我正在运行带有 Kitkat 的 Nexus 5,构建 v22.3。的 ADT 和 Windows 8.1。
android - 从URI获取真实路径,Android KitKat新存储访问框架
在Android 4.4 (KitKat) 中的新图库访问之前,我使用这种方法在 SD 卡上获得了我的真实路径:
现在,Intent.ACTION_GET_CONTENT 返回不同的数据:
前:
现在:
我怎样才能设法获得 SD 卡上的真实路径?