Questions tagged [clipped]
32 questions
25
votes
3 answers
Android seekbar clipped thumb
I ran into some weird problem..I implemented a seekbar with custom thumb..and when I ran my app on HTC Desire, it all works fine..but, when I ran it on Samsung Galaxy, the thumb becomes clipped!
Here are the screenshots..
Desire:
Samsung Galaxy:
I…

Tomislav Novoselec
- 4,570
- 2
- 27
- 22
7
votes
4 answers
Last Cell in UICollectionView is clipped
I have a UICollectionView that displays a vertical list of cells. It's basically a tableview but I'm using the collection view for more controller of how each cell is placed in the view. For some reason, the last cell in the collection view is…

mike
- 1,441
- 2
- 19
- 31
5
votes
3 answers
Clipped not actually clips the Image in SwiftUI
I am trying to clip the image and as we see the UI it looks fine but actually it doesn't clip the image which causes other UI elements to unresponsive.
Here the code I am using.
struct ImageContentView: View {
var urls:[String] = [
…

Malav Soni
- 2,739
- 1
- 23
- 52
5
votes
1 answer
Why are triangles being clipped in this mesh?
I have the following code:
#include
using namespace irr;
using namespace core;
using namespace scene;
using namespace video;
using namespace io;
using namespace gui;
int main(int argc, char** argv)
{
IrrlichtDevice *device =
…

Nathan Osman
- 71,149
- 71
- 256
- 361
3
votes
2 answers
Clip clickable parts of image as NavigationLink (SwiftUI)
When implementing an image in a NavigationLink closure and clipping that image, the unclipped image is clickable. Because of the clipping, the images are overlapping each other (see attached screenshots).
The first screenshot shows the original…

marco
- 148
- 1
- 3
- 15
2
votes
1 answer
2
votes
1 answer
SwiftUI clipped image still accepts tap gesture
I have trouble clipping the image in SwiftUI
Here is the code with minimal wrong-working example:
struct TestView: View {
var body: some View {
Image("iPhone13Pro")
.resizable()
.scaledToFill()
…

Daniel Pustotin
- 237
- 1
- 9
2
votes
1 answer
SwiftUI set corner radius depending on its own height
When I set corner radius with constant value, depending on the size of the image, the results don't come out the way I want.
Image(“myImage”)
.cornerRadius(25)
What I want in app.
More clipped in Widget
So I want to set radius value like …

naljin
- 439
- 3
- 10
2
votes
2 answers
Xamarin Forms Frame.IsClippedToBounds not working on Android
I've working on some page in my app and I just find out Frame.IsClippedToBounds property is not clipping its content. Here is a piece of code in my XAML:

Saimel Saez
- 319
- 4
- 8
1
vote
1 answer
Polygon in HTML SVG is clipped
I create a star via an SVG polygon. It draws fine when the stroke width is 1, but with wider strokes, the bottom left (and only the bottom left) vertex gets cut off. Does anyone know why this happens (and how to fix it)?
The following snippets…

FrankK
- 41
- 4
1
vote
1 answer
Border for a clipped box in css
I have a clipped box, that adds a diagonal line does the end of the box. I would like to add a border to it, but the border is also clipped.
Can I added a border to the clipped area using only CSS/html? So that the white has a black border before…

dave smith
- 21
- 2
1
vote
2 answers
How can you create a clipped NavigationDrawer below the AppBar?
How can you create a clipped NavigationDrawer below the AppBar?
The latest Android Studio (3.5.3) generates a full-height NavigationDrawer, and my question is what needs to be changed to instead get a clipped NavigationDrawer?
(
Please do not label…

user743436
- 324
- 2
- 14
1
vote
2 answers
Qt - What is meant by this sentence
At the following web page: http://web.mit.edu/qt-dynamic/www/tutorials-tutorial-t3.html
The following sentence is mentioned:
A widget is clipped by its parent and by the widgets in front of it.
What do we mean by such sentence?
Thanks.

Simplicity
- 47,404
- 98
- 256
- 385
1
vote
1 answer
UIButton inside UIView, with showsTouchWhenHighlighted glow is clipped by superview
it's possible the approach i'm using with this might be a little wrong, and if so perhaps someone can advise... but in any case, a pattern i've got into for creating responder widgets involves adding an invisible UIButtonTypeCustom that fills the…

Jonathan Crooke
- 912
- 7
- 19
1
vote
1 answer
Find clipped pixels in a RGB image
I have an image image.png and I want to find all clipped pixels. Here is what I have so far:
for i in range(1,width):
for j in range(1, height):
r,g,b = image.getpixel((i,j))
If( ): # I don't know what should be the condition…

userDS
- 15
- 5