Questions tagged [bringtofront]
68 questions
1
vote
0 answers
GridView child bring to front in android 4.4
There is apparently a bug in Android which breaks View.bringToFront.
In a GridView , I want to bring a child View to front by calling bringToFront(),When I call this method on child view , the child is moved to the bottom right position in the…

Balaji.K
- 8,745
- 5
- 30
- 39
0
votes
0 answers
Is there a way to 'bring to front' a window that is started using ProcessBuilder object?
I am trying to automatically start processes and open the applications using Java ProcessBuilder. When I run the script, the process starts and the window is opened in the background. How can I bring the application window to front when it…

rajeshs
- 1
- 1
- 2
0
votes
3 answers
z index not working on the navigation bar (it shows the content below)
https://civitonia.com/26744293
So basically I'm building this website and for the navigation bar I've added a rectangle with a gradient and just above this rectangle the menu itself.
The only way to make the menu visible (Home, Artist*, etc..) is to…

Emanuele Pesa
- 73
- 6
0
votes
1 answer
How to send the view back after a bringToFront()?
My goal is to zoom in an image with a long press and then zoom out. The concern is that this image, once unzoomed, remains in the foreground due to the use of the bringToFront () instruction. We should be able to use the reverse of bringToFront ()…

LastCard1440
- 1
- 1
- 2
0
votes
0 answers
How can I get back my lost Checkboxes (after moving them from the Form to the Panel)?
I placed several panels on my form. When I clicked the central panel in the designer, the main form was what was actually selected (even though the panel should be on top of it, and the main form should not be (easily) clickable in the designer).
By…

B. Clay Shannon-B. Crow Raven
- 8,547
- 144
- 472
- 862
0
votes
0 answers
Bring object (ListView) to front doesn't work
I do have less space on my WinForm, I want to bring a ListView to the front, but it always stays behind the other panels... I've tried a lot of things, e.g. the command .bringToFront order the button bring to front.
In the picture you can see the…

Hias
- 45
- 6
0
votes
2 answers
Picker with down icon on the right and over the text - Android
I successfully implemented the picker with down icon on the right from this wonderful post in Xamarin Forms project, but when the text in picker is long (than the picker control's width), the text overlaps the down image, which looks very…

Mac
- 373
- 5
- 20
0
votes
0 answers
SetForegroundWindow() does not work from existing console window
Following code works only when I run a new instance of console window. For example it works when I run the code from VS or when I double click exe file. However it does not work when I run the exe from already opened CMD.
///
/// Activates…

Elephant
- 675
- 1
- 8
- 18
0
votes
1 answer
Smooch chat has elements on top of it, how can I fix this?
I am using this library:
!function(e,n,t,r){
function o(){try{var e;if((e="string"==typeof this.response?JSON.parse(this.response):this.response).url){var…

rosu alin
- 5,674
- 11
- 69
- 150
0
votes
1 answer
Using bringToFront() to style leaflet layers that are NOT in a layer event with ngx-leaflet
I have a multipolygon that I want to filter, put into unique layers, and set different styles to. I load the geoJson, apply general styles, and use onEachFeature to put the layers into featureGroups based on a condition. Still inside onEachFeature,…

Lauren
- 1,035
- 1
- 14
- 32
0
votes
0 answers
C# Winforms main form sent to back
My Winforms app has a MainForm and a MainWaitForm. For some reason I don't understand, my MainForm keeps being sent behind other opened windows, mainly when users click on anything when the MainWaitForm is showing... For example, when running the…

neggenbe
- 1,697
- 2
- 24
- 62
0
votes
1 answer
Bringing Subview to front in custom UIVIew
I am using a custom UIView which contains the following elements by default (after init is called these are set) :
UIImageView
UIView
UIView
these are declared as open var in class code.
In my code I am adding another UIView like…

JVS
- 2,592
- 3
- 19
- 31
0
votes
0 answers
C#: BringToFront(), TopMost = True NOT working
I am creating a Windows form application in C# using Visual Studio 2008.
I have a Button control on my MainForm, which opens AnotherForm on Click event.
What I want to do is:
allow AnotherForm to be opened only once at a time, and
show an error…

J.Doe
- 329
- 3
- 14
0
votes
1 answer
When Android Textview Draw Multi-Line strings, The Layout Redrawn?
This is the code.
RelativeLayout layout = new RelativeLayout(this);
TextView title = new…

Alex
- 19
- 2
- 8
0
votes
1 answer
can't bring to front a full LinearLayout in a practice android app
It seems I am not able to get the startingPlayerLayout to the front of other Views. I have tried multiple solutions, the last one being the code below, which as a result keeps the LinearLayout visible but in the background...
(It's my very first…

mr.uaila
- 3
- 5