9,820 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
-1
votes
1
answer
90
views
Animate an imageview in android using fade and cropping
I am creating an android app (using Java), and I want to use an effect in my main menu:
My background image is an ImageView. I've set the source to a drawable. What I would like to do is have it start ...
2
votes
0
answers
70
views
JavaFX lock ImageView to grid of GridPane
I making something like memory and when I click on an image view I load a new image into it.
When I start the program it looks like this:
enter image description here
The gird obviously exceeds the ...
1
vote
3
answers
80
views
What's the maximum string length one can log using android.util.Log?
I could not find on Android official documentation any reference about, what is the maximum String lenght allowed to be placed in the text content ? ( not in the Tag, of course ).
In the case of not ...
0
votes
0
answers
43
views
Disabling anti-aliasing with Picasso when using .resize
I am trying to load 64x64 minecraft skin textures and resizing and cropping them to display the full skin. I am using the Picasso library to load the images from a url into an ImageView. However, when ...
0
votes
0
answers
32
views
How to charge the image of link
I have a question, is it possible to put the image of a url in this code, instead of the one in android:background=@drawnings/banner_icon another one that is hosted in a url??. Thanks everyone
The ...
2
votes
2
answers
122
views
Controller Stage Freezing Display Stage
I have a project that uses a controller stage to manipulate and color a display stage (which has an ImageView with a WritableImage). The problem I have been running into is that the display stage will ...
0
votes
1
answer
36
views
Using TransitionDrawable to crossfade drawables. Can the aspect ratio be preserved?
I'm trying to crossfade between backgrounds in an Android app I'm making. TransitionDrawable seems to be the best way to accomplish this. Unfortunately, there doesn't seem to be any way to do this ...
0
votes
1
answer
110
views
Place reference grid over all ImageView
My app has a single ImageView in a LinearLayout. It currently places a photo in the ImageView, preserving the photo's AspectRatio by setting ScaleType.CENTER_INSIDE. This results, correctly, in a ...
1
vote
0
answers
36
views
Android custom image with diagonal
I want to create a layout like this. It has 2 images with a diagonal running across the 2 images.
Below is my xml layout.
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http:...
0
votes
1
answer
42
views
Bitmap on Android ImageView not displaying as it should
I have two bitmaps that I have placed the character at the bottom right corner of the bitmap.
However, I see that upon changing container height of the imageview whose android:src equals the bitmap, ...
0
votes
1
answer
61
views
How to prevent ImageView from being clipped at the edges of a LinearLayout in Android?
I am trying to make a profile image to be placed on top of the border, but it keeps getting cropped out by the borders of the linear layout.
Here is my code:
android:id="@+id/linearLayout&...
-1
votes
1
answer
67
views
In Swift UIKit, how to add two button images inside a table cell?
I need two images buttons to be clickable inside a certain cell (not all cells), instead of the text. How can I do this? I have the cell extension, and the image "the_icon" exists (I can see ...
1
vote
2
answers
267
views
How to extract gps coordinates from an ImageView in Android Studio
I have an android app in which I want to display the GPS Coordinates of an ImageView, that I get from the users image uploads. My Code looks like the following:
package com.example.app;
import ...
0
votes
1
answer
214
views
Android Talkback issue for ImageView
I'm using ImageView for voiceover accessibility as below:
imageView.setContentDescription("This is ImageView control");
But problem which I'm facing, that voiceOver pronouncing complete ...
0
votes
1
answer
36
views
Image not loading in the custom view class that extends AppCompatImageView
I have designed a custom class named PaintView. My objective is to load an image that user selects and allow the user to draw like paint brush or put different shapes on it.
Here's how I implemented ...