Location of default background image for Oracle ADF Mobile applications

1.7k Views Asked by At

I am working in Oracle's ADF Mobile framework (specifically, Campus Mobile). There is a standard background image that is displayed when loading data or as a background image, as seen below (the dark, circle pattern - not the loading spinner):

Oracle ADF Mobile background image

Is it possible to change this image? I cannot locate it anywhere in the deployed application files or as a file that was bundled with JDeveloper.

3

There are 3 best solutions below

1
On

There is a file named amx.css. Check there to see what classes you want/need to override the modify default css. Check this blog for more info about your particular 'problem': http://oracleadfmobile.wordpress.com/2013/11/14/amx-activity-indicator/

0
On

you need to override the css style of this page which is "#bodyPage" so put the below code in a CSS file and attach it to your Feature:

 #bodyPage{

    background-image: url('<PATH_TO_UR_IMG>>') !important;

   }

Note: you won't find the images as it's just a black background with an encoded base64 grey dotted image.

or just click on the "Panel Page" from page structure then go to property inspector in inline style write

background:#ffffff;
0
On
#bodyPage {
    background:#eceded!important;
}

.amx-panelPage {
    background:#eceded url("../images/[email protected]") repeat;    
}

just using 2 css selector to overriding background for AMX Page