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

Fixed background image until bottom of page

I'm trying to get a background image to start and stay in a fixed position, but only until the rest of the 'content' of the page is finished, at which point the full image is displayed. I'm working on a purely CSS solution. I should note that the…
Free
  • 663
  • 9
  • 13
4
votes
1 answer

Background not appearing at android 4.2.2, but appearing at 2.3

I'm trying to make an image to serve as my background in a ScrollView. The image appears at Android 2.3 running in a Galaxy 5 and a Galaxy SII lite, but it doesn't at 4.2.2 running in a Galaxy nexus and Asus nexus. Funny thing is that any other…
Dragons_Lair5
  • 715
  • 1
  • 5
  • 16
4
votes
4 answers

Cocos2D Infinite Background Picture

I'm curious as to how to create an infinite background in cocos2d. For example lets say I was building an app with a man running from left to right, and I want him to run infinitely. Well in that case I would have to have an endless background so…
doc92606
  • 691
  • 2
  • 11
  • 32
4
votes
0 answers

Why do Views lose padding when an xml backgroundResource is set?

In Android you can set a Background via xml and anything is fine. In some special cases I have the need to set it inside Java (i.e. altering List-Rows). One could think that he can just declare: View v =…
Rafael T
  • 15,401
  • 15
  • 83
  • 144
4
votes
1 answer

How to handle core data migration when app goes in background mode?

Should I just let the migration continue, and then let iOS kill the app if migration takes longer than the alloted time (5 seconds) [this will generate a crash log] Or should I abort the app? [this will also generate a crash log]
MiuMiu
  • 1,905
  • 2
  • 19
  • 28
4
votes
5 answers

slideshow for div's background image + jquery

I have a big div element at header and there are many text contents and some boxes in the div. and i have a big img as bg for this div, now i need to make a slideshow for this div's background :/ How can I make slideshow for a div's background…
designer-trying-coding
  • 5,994
  • 17
  • 70
  • 99
4
votes
3 answers
4
votes
2 answers

ios daemon background

I have an iOS app that performs network testing for admins and webmasters. Users tell me that they want the app to stay alive in background mode and generate notifications when a failure condition occurs. However, the Apple documentation indicates…
dhovel
  • 61
  • 3
4
votes
5 answers

HTML/CSS: Align a Second Background Image to the Bottom Right of Page

Okay, I've been trying to solve this question for years. I've tried a number of different solutions, but finding myself facing the same problem again, I'd really like to ask the community for the best way to solve this problem. I want to have two…
Rich Jones
  • 1,422
  • 1
  • 15
  • 17
4
votes
1 answer

C++ MFC how to send an application into Tray

i wrote an little application which does some operations in the background. because it doesnt needs attention of the user, i want to send the application into system tray, and when someone clicks on it, the window should popup again. the problem is,…
Laokoon
  • 1,241
  • 4
  • 24
  • 47
4
votes
0 answers

How to set the background of the application to be animated (Live wallpaper?)

I have a simple application for Android and would like to set the background to be animated. How can I do this? I have to create a live wallpaper, install it on phone and then use in my application? If so, how do I use it in my application? Is it…
Tgomes
  • 51
  • 2
4
votes
8 answers

How do I center content and extend the background color to 100% of the page?

This layout is practically everywhere on the web but no one seems to have provide any information on how it works. I need for the content to be centered and the background needs to extend the full width of the page Example http://www.fuerstlaw.com/…
Chris Hooks
  • 51
  • 1
  • 1
  • 3
4
votes
1 answer

Programmatically change splash screen in iOS?

I am currently trying to figure out how to change the splash screen (default png) in iOS. From what I understand, the ideal way to present an application to the user at the very beginning is to have the launch image a skeletal representation of the…
user1560387
  • 55
  • 1
  • 4
4
votes
1 answer

NSUrlConnection When Lock the Screen?

I have tried some ways to perform NSURLConnection when lock the screen but none of it works. I have tried as following: [self performSelectorInBackground:@selector(startConnection) withObject:nil]; I also tried: dispatch_queue_t request_queue =…
Rendy
  • 5,572
  • 15
  • 52
  • 95
4
votes
3 answers

Extend a background into the margin

I have a
element that has a 10 pixel margin, as shown in the code below. My question is rather simple: how do I extend the background image into the margin? I tried using the CSS3 background-clip and background-origin sub-atributes, but they…
Shrey Gupta
  • 5,509
  • 8
  • 45
  • 71
1 2 3
99
100