Questions tagged [transparent]

A GUI (often web) technique for trapping user actions across multiple elements by using an overlaying, but transparent, GUI object.

See this wiki article for more info. The tag should be used for the general subject of transparency in images.

See also: , ,

1915 questions
0
votes
0 answers

Recolouring a transparent png and layering it onto another png on the fly

I've been struggling with getting what is possibly a quite simple bit of code working and as a last resort, I'm reaching out for help! The basic goal is to layer 2 pngs and output them to the browser without saving them to disk. The difficulty…
0
votes
1 answer

Android: back to Main Activity from transparent dialog activity , screen turns black?

I'm trying to create a transparent dialog activity when I receive some notice.The dialog activity has an ok button,and if I click this it will return back to main activity with the flag: Intent.FLAG_ACTIVITY_CLEAR_TOP and…
melody
  • 1
0
votes
0 answers

JPanel contents- JButton and JLabel backgrounds not functioning properly

I created a user interface that looks something like this: https://i.stack.imgur.com/oBNSZ.jpg +You can ignore the background pic. The issue is that the 2 JLabel's have white backgrounds. I've been working for a while using setOpaque() on the…
Eric
  • 444
  • 7
  • 19
0
votes
3 answers

How to set background color to transparent?

I want to set the background-color of my header to transparent, but when I use background-color: transparent nothing happens. When I use background-color:rgba(255,0,0,0.5), I get (255,127,127) in every browser. Snapshot How can I set the…
M.Morris
  • 1
  • 1
  • 3
0
votes
1 answer

JavaFX Combining Utility and transparent stage style

I would like to have a JavaFX Application that doesn't appear in the taskbar and also does not have window decoration, how can i achieve that, any ideas? EDIT: I have tried this: Is it possible to have a transparent utility stage in javafx? It is…
Marcel
  • 1,509
  • 1
  • 17
  • 39
0
votes
0 answers

How to achieve transparent image placeholder in a CoordinatorLayout in android

Can someone help on how to achieve this transparent upper section of an activity? I know that this uses CoordinatorLayout because the app that I am currently developing looks closely to this. However, when I try to set the ImageView or even the…
Glen
  • 79
  • 2
  • 9
0
votes
1 answer

How can I make a canvas image transparent?

I have used following code for creating a canvas image, but its not transparent. please let me know how can I get a transparent image function capture(){ $('#target').html2canvas({ onrendered:function(canvas) { …
0
votes
2 answers

Cannot load and overlay transparent image in OpenCV

I have transparentGUI.png image with transparent background - in GIMP it looks like that: When I load it in OpenCV by Mat imgColorPanel = imread("transparentGUI.png", -1); and then display it by imshow("widok", imgColorPanel);, i can see this image…
ScriptyChris
  • 639
  • 4
  • 16
  • 48
0
votes
1 answer

SlidingTabView inside Toolbar

I have a transparent SlidingTabLayout embedded within my Toolbar and a ViewPager below. Everything works fine, functionally. However, the SlidingTabLayout isn't showing up in the bottom left corner of the Toolbar. Instead, it is floating in the…
JackTheCripple
  • 783
  • 1
  • 5
  • 8
0
votes
0 answers

Make Layout transparent

Ive got a Layout where I have viewpager with sliding tabs.Now I want to make the upper part of my layout transparent so I get the effect that the activity before it is kinda visible. It should look like this : My Layout :
Ahmet K
  • 713
  • 18
  • 42
0
votes
1 answer

Picturebox refresh C# without redrawing the current drawing

I have found this code online, and I want to use it to draw a little blue box, on top of my drawing. But When I click on the picturebox the blue box appears, but it redraws my entire picture box, this is a problem because I have a very complex…
0
votes
1 answer

Android: Non-transparent text on transparent image

I need to put text on transparent image, but my text goes transparent too. Update: I have an Activity background which is a picture, than I have LinearLayout with background as transparent picture, and in that Layout I need a TextView with text…
Milorad Simic
  • 97
  • 1
  • 7
0
votes
1 answer

Semi-transparent border on button

I'm trying to make a button that looks like this: The button has transparent background color non-transparent title semi-transparent white border color What's the best way to do this? I know how to achieve the first two items, but how do I get…
helloB
  • 3,472
  • 10
  • 40
  • 87
0
votes
1 answer

Close a modal form clicking on a transparent area

I have a modal form that covers completely the screen. This form has has transparentColor = TRUE and transparentColorValue = form's color, so its transparent except the areas with different color. Is there a way to fire up the onClick event when i…
JimPapas
  • 715
  • 2
  • 12
  • 27
0
votes
2 answers

How to show content below transparent status bar in Kitkat

I am currently running Kitkat (4.4.2) in my phone and I installed an app. In this app, the status bar is transparent and showing the content of the app below it. Please see the images. Image 1 Image 2 How should I do it in my program. Thanks in…