问题标签 [android-imageview]

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.

0 投票
3 回答
3252 浏览

android - 在列表视图的上方添加图像

我想在 listview 的上方添加 imageview。我知道在列表视图中添加部分听众。但我只是想节省时间,所以我使用图像视图作为列表视图标题而不是使用 addSectionHeader。不幸的是,我只是坚持使用一些 xml 属性。我的列表视图中的图像叠加。实际上图像应该在列表的上面。查看我的 xml 布局。谢谢。

错误

0 投票
2 回答
588 浏览

java - Pass Image Array to next screen

I've a dynamic image array which come through from database. And i just show image thumbnails at first screen and want to display full screen of same image array. The thing is that i want to pass the whole dynamic array to next screen. Actually i know how to use preferences in java. But i don't know how to pass the whole array with variables or something. Any ideas would be appreciate.

Edited : @Jeremy Edwards,thanks for your reply. I tried to do as you suggest but i found this error while i coded. I tried to use putExtra(String name,int[] value) but the error said The method putExtra(String name,boolean value) in the type Intent is not applicable for the arguments (String,Multimedia). Actually i already chose putExtra(String name,int[] value) from auto suggest box. wonder how it change back to (String name,int[] value) suddenly. Please check my code below. private ArrayList<Multimedia> mm; viewer.putExtra("ImagePosition",mm.get(position)); viewer.putExtra(String name,int[] value)

0 投票
2 回答
3165 浏览

android - ImageView 无法正确居中缩小图像


我无法让图像在 ImageView 中正确缩放和居中。
放大的时候没有问题,但是缩小的时候,图像不再出现居中,ImageView的边界不对,像这样:

问题.png

这是一个错误,有没有人找到解决方法?

0 投票
5 回答
18663 浏览

android - 为什么 setImageResource 什么都不显示?

我想根据数据库值在我的 ListView 中显示一个图标。我按照这个答案这样做。但结果什么都没有显示。这是我的row.xml中的内容:

这是代码:

我特别在我的代码中使用相同的图标作为默认图标。这里有什么问题?(我只有star_offindrawable-hdpidrawable-mdpi文件夹)

更新。以下代码运行良好:

0 投票
1 回答
1856 浏览

android - Android:图库视图,我们可以命名图像吗?

当我们在 Android 的 Gallery 视图中显示图像时,它们是否可以为画廊项目设置标题或设置图像名称?

从技术上讲,我想命名每个画廊项目。这可能吗?

谢谢,萨娜。

0 投票
2 回答
14173 浏览

android - Android:是否可以使用数字更新 ImageView/ImageButton 以显示新消息的数量?

在 iOS 中,我们有一项功能可以通过在图标的右上角显示一个小数字来使用新的待处理消息为用户更新应用程序图标,同样我想知道我们是否有更新 ImageView/ImageButton 的方法在android中(这里我不是要更新主屏幕上的图标,而是要在我的应用程序中)。

例如,图片显示红色背景图标,红色背景显示待阅读的消息数量,如果没有消息,则显示灰色背景。

在此处输入图像描述

谢谢,

0 投票
4 回答
8769 浏览

android - 动态设置 ImageView 的 Source

我正在尝试根据国家名称在 ImageView 中设置国家标志。

我遵循国旗图像始终存储在的约定drawable/flag_country_name

例如;可绘制/flag_india,可绘制/flag_south_africa

到目前为止我写的代码是

上面的代码可以正常工作。

现在我想添加更多的县和标志。有什么办法可以减少代码行吗?像 return R.drawable.flag+underscorise(teamName);

0 投票
2 回答
7537 浏览

android - 从 imageView 检查drawable id

嗨,伙计们,我遇到了一个 imageview 的情况,我动态设置了可绘制的源和文本,类似这样的东西,与这个问题太相似了

在 imageview 上带有 onClickIcon 的 xml,我需要它知道哪些图像 id 可绘制来并检查它是否等于我的

活动

提前感谢大家,我也为我的英语感到抱歉,下次我会努力改进它。

干杯

0 投票
1 回答
1625 浏览

android - 当新消息出现时在按钮上显示新消息的数量,当没有新消息时它不应该显示

我们有一个功能可以通过在图标的右上角显示一个小数字来为用户更新应用程序图标和新的待处理消息,同样我想知道我们是否有方法在 android 中更新 ImageView/ImageButton (在这里我希望更新主屏幕上的图标)。

例如,图片显示红色背景图标,红色背景显示待阅读的消息数量,如果没有消息,则显示灰色背景。

我怎样才能做到这一点 ?如果可能,请提供示例代码

0 投票
1 回答
1456 浏览

android - 在 android 的原生 imageViewer 中查看图像

我已经检索到图像的 uri 但是当我使用

startActivity(new Intent(Intent.ACTION_VIEW,mediaUri));

该图像在图像查看器中查看,但我也可以查看其他图库图像。

如何避免这种情况。

我只希望在图像查看器中打开单个图像。