Questions tagged [background]

Background typically refers to the rendering behind a container element's contents - usually on a web page, Windows form or other UI presentation medium.

In CSS, the background property is a shorthand property for setting the individual background property values in a single place in the style sheet. This includes the image, color, tiling and position.

In Windows Presentation Foundation (WPF), the background attribute can be defined for any visual UI object. It should be noted that WPF applications use a background thread for handling rendering and repainting.

Desktop applications such as those written in .NET and Java may have colors or images used to fill the window of a particular frame or form.

For information about background threading, see the multithreading wiki.

14810 questions
4
votes
2 answers

iOS Blur Background like iTunes Remote App

I'm new here so please bear with me. Can you please help me make a transparent blured background like the one used in iTunes Remote iOS7 app in the store? Also, how is the text masked? Screenshot here: (source: rackcdn.com)
Dănuț Mihai Florian
  • 3,075
  • 3
  • 26
  • 44
4
votes
5 answers

Paint background of JPanel

How can I tell the paint method to draw background on JPanel only and not on the entire JFrame. My JFrame size is bigger than the JPanel. When I try to paint a grid background for the JPanel, the grid seems to be painted all over the JFrame instead…
Jessy
  • 15,321
  • 31
  • 83
  • 100
4
votes
1 answer

IOS 7 background fetch

I am developing a app that use the background fetch. I would need that the function it execute in background each 5sec, but with the code that I saw in google, the SO decide when the function should to be call. I would want the this function it…
4
votes
2 answers

Maximum and minimum gradient size in CSS

background: -webkit-linear-gradient(#FFFFFF, #EAEAEA); background: -o-linear-gradient(#FFFFFF, #EAEAEA); background: -moz-linear-gradient(#FFFFFF, #EAEAEA); background: linear-gradient(#FFFFFF, #EAEAEA); What I basically want to do, is to have some…
Max
  • 897
  • 1
  • 10
  • 27
4
votes
1 answer

How to check if BackgroundFetching is enabled on iOS?

I like to determine if the user turned off Background Fetching in the Preferences app. If he turned it off my app won't work.
David Gölzhäuser
  • 3,525
  • 8
  • 50
  • 98
4
votes
1 answer

Moving video background as mouse scrolls

have you seen Katy Perry's website? It's awesome (I'm serious, no spamming)! It has a moving background video, and I can't figure out the way they implemented it. this is the homepage: http://www.katyperry.com/ and as you start to scroll down, the…
Zsolt Balla
  • 533
  • 2
  • 7
  • 16
4
votes
2 answers

Is there a way to last the ring forever on incoming call in VoIP application?

I'm working on a VoIP-based IOS App. There are two ways to play some sound to notify the user when a call come in: Send UILocalNotification with sound. The sound will last for at most 30 seconds; Play a local Music Asset in…
Adiaos
  • 73
  • 8
4
votes
1 answer

Key listener in Service

I am new to android and I extensively searched for this. Any help would be much appreciated:) I have a requirement for an application which does the following: An application that runs in the background as a service that listens to the volume…
Santosh C.s
  • 41
  • 1
  • 1
  • 2
4
votes
1 answer

C code for a Shell to allow process to execute in the background (bash)

This is homework Hey folks, here's the portion of the assignment I'm working on now: A command, with or without arguments, executed in the background using &. For simplicity, assume that if present the & is always the last thing on the line. …
iMatthewCM
  • 449
  • 2
  • 10
  • 21
4
votes
3 answers

Android - ExpandableListView change background for child items

I'm using ExpandableListView in my app and one of the complaints I get from the users is that when the List item is expanded it's hard to visually distinguish where the child item ends and next group item begins. So I would like to change the…
Bostone
  • 36,858
  • 39
  • 167
  • 227
4
votes
3 answers

CSS background cover

I have a full screen background accomplished perfectly in CSS using: body { background-image: url('../images/backgrounds/.jpg'); background-size: cover; float:left; overflow: hidden } Although when looking at this on mobile, iOs &…
Jonlee
  • 51
  • 2
  • 4
4
votes
4 answers

ignore_user_abort and redirect in php?

I have a very similar setup to the person here: PHP Background Processes i.e a very long script that takes up to 10 minutes. However, I need the person who calls the script redirected back to the homepage while the script works. In other words, I…
Mala
  • 14,178
  • 25
  • 88
  • 119
4
votes
1 answer

AudioQueueStart fails with -16981 from background process on iOS 7

In my iOS app on all previous versions of the OS, we record audio occasionally, then sleep for a while, then record again, and cycle for ever (sleep is to maintain battery). This worked fine up to iOS 7, even when the app was in background. Now,…
4
votes
1 answer

Unable to update view when app goes into background in iOS 7 using applicationDidEnterBackground:

When my app goes into the background, I'm changing the view to prepare it for coming back into the foreground. In iOS 6, what I'm doing works fine. However in iOS 7, it is not working. I'm trying to hide and show some UILabels like…
abc123
  • 8,043
  • 7
  • 49
  • 80
4
votes
2 answers

Use video script as div background [ HTML / CSS ]

Sorry if my tune is not good. I have this code of html HTML:
---- Some Code to execute ---
CSS: .video_bg{ width:600px; height:600px; float:left; } and have a video embed code this
BigTech
  • 460
  • 6
  • 11
  • 22