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
1 answer

What happens if I source a script as background process?

From the BASH pages: When a script is run using source it runs within the existing shell, any variables created or modified by the script will remain available after the script completes. In contrast if the script is run just as filename,…
Pithikos
  • 18,827
  • 15
  • 113
  • 136
4
votes
5 answers

Background image not showing up on IE8

I've read through other questions but to no avail - I really can't work this out. The site is (Been redesigned, so isn't relevant anymore. It used HTML5 elements, but they weren't declared as block, and IE doesn't assume that they should be.) The…
Rich Bradshaw
  • 71,795
  • 44
  • 182
  • 241
4
votes
1 answer

TableView cell on iPad refusing to accept clear color

I am using a github project called SWTableViewCell.h by Chris Wendel. On the iPhone, clear color works. However, on an iPad it refuses to make the tableview cell clear. Instead, it makes it white. I have been wracking my brain how to fix this but…
user3642059
  • 93
  • 1
  • 6
4
votes
2 answers

Android EditText background with line inside

i'm creating background for my EditText , and i want to add line under the text. My background code:
Maciej K
  • 160
  • 4
  • 11
4
votes
2 answers

change the master page body color from different pages when they load in vb.net

I have like 10 aspx pages (junior_class_students1.aspx-...10.aspx). They all have the same master page in the back (class_students.master). Everytime i load a page i want the master page background-color to change, to the one that i can specify per…
fered
  • 41
  • 1
  • 2
4
votes
2 answers

how to open another application from background using Custom URL scheme in iOS

I want to develop an Enterprise Application. It will run in the background continuously and from the background i want to open an another application. Its like toggle between two application. I have implemented forever background running with help…
iOS Dev
  • 301
  • 2
  • 9
4
votes
1 answer

Android: background color and image at the same time

i need to have both the color and the image for a textview background, via java and not xml. in other words, i need a thing like this css rule: background:#f00 url(...); how can i achieve this without use the xml? thanks
D Ferra
  • 1,223
  • 3
  • 12
  • 21
4
votes
1 answer

iTunes Music stops when I open my application

I am using AVAudioSession and I am activating in my browser on launch. I have set category AVAudioSessionCategoryPlayback. I have not set any category options. I want audio to be played even in background. If I don't use AVAudioSession then I will…
aparna
  • 353
  • 2
  • 3
  • 13
4
votes
2 answers

Estimote iBeacon: Monitoring in background (Android)

I would like to have push notifications when my app is open but is in background. For now I have changed the Estimote Demo, and my app gives me a notification when my app is in foreground which is not much of use. I post here my code of…
ayasha
  • 1,221
  • 5
  • 27
  • 46
4
votes
6 answers
4
votes
2 answers

prevent output from called bash function in subshell

If I call a function in bash, and that function itself is designed to output messages to the terminal using printf, how can I suppress that functionality. Allow me to explain further. Normally I would have a main script. This script calls a…
Atomiklan
  • 5,164
  • 11
  • 40
  • 62
4
votes
1 answer

How to fill remaining space in div with pseudo elements?

I'm trying to make a h2 element with a line in a background, but only in the remaining space. I know the simplies way is to use span inside H2, but user will generate content by WYSIWIG, so I can't use additional elements in h2. I tried many things…
SimonRabbit
  • 358
  • 1
  • 2
  • 12
4
votes
4 answers

HTML/CSS - Fixed Backgrounds while scroll

Any idea or explanation how they did the backgrounds of this site? http://upcircuit.org/ Basically, a fixed background is the trick here. But there are multiple backgrounds and I am trying to solve the tricks of this site :)) I tried scanning the…
Gibs
  • 109
  • 1
  • 4
  • 12
4
votes
0 answers

StoreKit background download

According to the In-App Purchasing Programming Guide under Delivering Associated Content Additionally, Apple-hosted content automatically downloads in the background even if your app isn’t running. I have tested this in sandbox mode on my iPad and…
Ruben
  • 1,950
  • 1
  • 12
  • 13
4
votes
2 answers

Android: how to properly wait on service process completion

Here's scenario: I have 2 activities and one service First activity is a landing view/search page. Second activity displays search results Search is always executed against internal SQLite db Periodically (say daily) db needs to be updated from the…
Bostone
  • 36,858
  • 39
  • 167
  • 227