Questions tagged [bringtofront]

68 questions
27
votes
3 answers

BringToFront doesn't work inside a coordinator layout

Android Studio 2.0 Preview 4 I am using to use BringToFront to get a TextView to display in front of the other controls. The Doc's bringToFront() say you have to call requestlayout invalidate. Which I do, but doesn't…
ant2009
  • 27,094
  • 154
  • 411
  • 609
13
votes
1 answer

FabricJS - disable layer index changing when object is selected

I've a problem with my FabricJS app. By default, the object layer in fabricjs jumps to the top when I select it. I want to disable this option so that the index of the active element not changing. It's possible ?
KrissS
  • 133
  • 1
  • 4
5
votes
1 answer

Bring text to the front of a plot

I have a figure in MATLAB. Then I add a text to it by typing, b = text(0.5, 0.5, 'Detector action', 'Rotation', -70, 'FontSize', 25); But the text goes behind the figure (See below), I also tried, uistack(b, 'top'); but it didn't work.
Mohammad
  • 145
  • 8
4
votes
1 answer

BringToFront of the custom view inside a coordinator layout

Actually there is already similar question BringToFront doesn't work inside a coordinator layout However no of suggestions helped me to make bringToFront work within a coordinatorlayout. Here is the layout-xml
Tima
  • 12,765
  • 23
  • 82
  • 125
3
votes
3 answers

JavafX & CSS - Move Node to Front

As the title basically. I have a node in JavaFX which I want to be displayed in front of all other nodes according to certain CSS rules. I do not want this to change the ordering of the nodes in my VBox which .toFront() appears to do. See this…
Ivar Eriksson
  • 863
  • 1
  • 15
  • 30
3
votes
2 answers

How to bring to front on activex frame

I insert some frames (microsoft forms 2.0 frame) into the excel sheet. And I wish i could click one then bring it to front of all other frames. but it is not working. with the belowing code. frame1 still under the frame2,3,4... msobringtofront works…
zhangjie25
  • 75
  • 5
3
votes
1 answer

Android Button orders to front automatically

something weird is happening to me. I have this layout:
bakua
  • 13,704
  • 7
  • 43
  • 62
2
votes
1 answer

Send text highlight behind the text that comes after the highlight

I have a block of text, and I decreased the line height because I like it better that way. Sometimes the top of the h touches the bottom of the p above it, and that's okay. My problem is that when I highlight text using , the background-color…
2
votes
0 answers

bringToFront for Floating Window TYPE_APPLICATION_OVERLAY

I have created multiple Floating Windows using TYPE_APPLICATION_OVERLAY as below WindowManager.LayoutParams params = new WindowManager.LayoutParams( width, height, x, y, …
2
votes
3 answers

View not being to front on CoordinatorLayout

I have a layout which works fine. One view is in front, another in the back. I'm using CoordinatorLayour because I'm using a FAB. The front view is a map and the back view is a view showing data when the FAB button is clicked. For this I've seen…
learner
  • 1,311
  • 3
  • 18
  • 39
2
votes
2 answers

Android bringToFront() View API <= 16

When I was testing my app, I realized that if I use a device with API <= 16 the method bringToFront() does not work! How can I do this for APIs less than 16? When I touch a view, I need to bring it to the front! With API 17 or greater,…
user3240604
  • 407
  • 1
  • 8
  • 22
2
votes
3 answers

how does one bring superview to front?

Normally developers try to bring subview to front. On contrary, how does one bring superview to front? I'm looking for a reverse of bringSubviewToFront(_:). It should look like bringSuperviewToFront(_:)
potato
  • 4,479
  • 7
  • 42
  • 99
2
votes
5 answers

how can bring to front clicked div in jquery?

I want bring to front div which is clicked , how can do that? Here i added some divs in HTML:
A
B
C
i set size of div in here with CSS Code: div { width: 100px; height:…
MojtabaSh
  • 627
  • 1
  • 11
  • 26
1
vote
3 answers

Trouble with Click to Front and DIV stacking

I'm trying to setup a page that works similar to windows. There are a few layered DIVs that are draggable and resizeable. I wanted to make it so when a window is clicked it brings it to the front. If I use the draggable stack function it works…
jerdill
  • 13
  • 3
1
vote
1 answer

android bring to front not working on card view

In android bringToFront() not working when trying to bring a view to the front of a card view. It seems that the card view always has a higher priority than other views. I try requestLayout() plus bringToFront() too but it doesn't work. Is there any…
1
2 3 4 5