问题标签 [inflate]
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 - Android - 如何用多个 EditText 字段填充视图并读取它们的值?
对于我的 Android 应用程序,我想要一个允许用户单击加号按钮以添加 EditText 字段的视图,并且在 EditText 字段旁边,我希望有一个减号按钮,可以将它们从视图中删除。本质上,这与在 Android 上的编辑联系人界面中添加多个电话号码/电子邮件地址非常相似。
我想我需要通过使用包含 EditText 和每次要添加的按钮的单独视图来扩展我的主视图来做到这一点。但是,我不知道如何管理使用唯一 ID 识别每个 EditText 和按钮,因此,我不知道如何管理每个 EditText 的值以保存到我的数据库中。有人可以告诉我我需要做什么吗?谢谢你。
android - 如何在确定的位置膨胀视图?
我有一个带有“添加”和“删除”按钮的活动。
“添加按钮”使视图膨胀,“删除按钮”删除选定的视图。
当我使用“添加按钮”为视图充气时,它会自动绘制在任何以前充气的视图下方。
我想让用户可以上下移动每个膨胀的视图,这样他就可以改变它们在屏幕上显示的顺序(以拖放的效果)
是否可以指定每个视图膨胀的“位置”?(例如,低于或高于当前选定的视图?)
如果没有,达到预期效果的最佳方法是什么?
(如果您认为可能有帮助,请随时询问任何代码)
java - Problem Inflating byte[] in Java?
I ran into an issue which I can't figure out. Here is the definition of the problem: I have some data in a Blob column in Db2/Linux environment. Blob was written into DB2 after the byte[] was compressed using JDK compression (code that does this is running in Linux environment). I am trying to write a simple program to read some of this data decompress it (using JDK) and create a String from the decompressed byte array in Windows Environment (my development environment). Issue is that after I decompress the Blob (byte[]), length of the decompressed byte array is usually 1-3 bytes longer than expected. What I mean by expected is that the offset and length fields are also being stored in the database. So in this case, length of the decompressed byte array is usually longer than the stored length in database, just a few bytes. So if I create a String object from the decompressed byte array and create another String object using the substring(offset, length) method using the offset and length fields from the database, my second String(the one I got by using substring method) is shorter.
An example would be: database record contains a blob, offset: 0, length: 260,409 after decompressing the blob -
For some other input records, the difference I am seeing is anywhere between 1-3 bytes in length.
I am sort of puzzled with this issue and wondering if anyone could suggest any tips so I can do more debugging to figure this issue out. I am wondering whether this could be somehow related to how bytes are being stored/written in Linux environment and how they are being read in Windows? Thanks for your help.
android - android xml布局问题
我已经花了几个小时在这上面,这是一个布局问题。有人可以告诉我如何在同一活动中同时显示图像和视图切换器。
如果我首先放置图像视图,那么每次加载新图像时,按钮都会消失,整个布局似乎会重新膨胀
更新:
布局必须在顶部有一个图像视图,然后是一个视图切换器。
android - 我们可以将动画应用于特定的孩子而不是android中的整个根吗
下面是我的代码示例:我膨胀了一个视图,并且只想向膨胀的视图添加动画。现在它正在为整个布局做。
c++ - zLib inflate 在某些情况下有空结果
我的程序处理 PDF 文件并从中读取一些流。那里也有 FlateEncoded 流。我使用 zlib 的“inflate()”方法来解压它们。
这通常适用于以下代码:
但是对于某些流,inflate 的结果为空。这并不经常,但它会发生。有人知道为什么吗?
流必须没问题,因为所有 PDF 阅读器都能正确读取 PDF 文件。
谢谢你的帮助!
更新
我已经上传了 PDF 和流,所以你可以自己检查。
PDF -> 流从字节 43296 开始
更新 2
我比较了不能解压的流和可以解压的流。我注意到一件有趣的事情:工作流都以 2 个字节的 H% 开头。有问题的流以 ö> 开头。现在有人知道这意味着什么吗?
谢谢你的帮助!
javascript - JavaScript:解压缩/膨胀/解压缩/ungzip字符串
我正在寻找字符串膨胀算法的 JavaScript 实现。我想在服务器端(Java)压缩,在客户端(JavaScript)解压。
我发现:
解压缩 javascript 中的字符串
那一个被标记为已回答不同问题的答案。其他答案也适用于其他内容(以 ZIP 格式解压缩文件)。
JavaScript 膨胀实现(可能仅限 FF 3.6)
这最接近我的需要。不过我想有一些选择。
建议?
谢谢, 翁德拉
更新: 我有一个非常具体的用例,请不要回答“不要在 JavaScript 中那样做”。我正在编写一个“离线”报告工具(一旦生成,它就会被放到静态存储中),放气可以为单个报告节省兆字节。我受到其他应用程序的限制,因此无法将其存储为 zip 文件。
android - 充气机找不到构造函数
这可能是我遇到过的最烦人的错误。当我去膨胀一个自定义视图并将其传递给活动时,我得到了这个:
我从中得到的是“嘿,我一定忘记将 AttributeSet 添加到我的视图中,假人”,事实并非如此!据我所知,我的构造函数是完美的。谁能告诉我我错过了什么,或者日食是否在直肠搞砸了我?
我在哪里调用 WorkBench(WorkBench 和这个函数在一个服务中,这就是我转换为 Activity 的原因)
和 XML
任何提示都会有所帮助,谢谢~Aedon
android - 更改膨胀布局中的文本值
我有自定义适配器,我在其中膨胀布局。在适配器中,我尝试更改TextView中的一些文本值(@id/datetextcal)
我认为没关系,但我有一个错误!为什么 ?
如果不修改此值,所有编译和工作正常。
布局代码(R.layout.calendarcell):
适配器类的代码:
那个错误:
android - 在Android中获取膨胀异常
我对 Android 开发非常陌生,在这里我遇到了一个小问题。我想通过扩展 TextView 创建一个自定义 TextView 类并在 ListView 中使用这个类(ListView 的每一行都包含这个类的对象)。
我已经创建了这样的自定义类
并且对于我的 ListView 的每一行,我创建了一个由 TextView、我的自定义类和一个图像组成的 xml 结构
在我的 ListView 的 Adapter 类中,我正在检索这样的结构
但我得到了膨胀异常
但是,如果不是我的自定义视图,而是在 layout.xml 中添加一个简单的 textView(每行列表视图的布局结构),那么一切正常
我搜索了论坛,但我没有得到我做错了什么。
在这种情况下请帮助我。