Cordova - How use splash screen as body background - android

I would like to use the splash screen used on beginning as body background in every page.
Is there a system to know what is the image path is used by device? ... I have a lot of images for many type of devices and brand.
I have searched on web but no one answer and no one solution... am I alone?!
Thanks

iOS has added support for a single splash screen for every device. If you did this then you could just use that one
I'm not sure about android though.

Related

How to change default Nativescript opening page in Angular+Nativescript application?

I am working on the Nativescript+Angular application and I am done with my assignment but now I want to change the default opening page image of NativeScript app.
I have tried but unable to find that. Please let me know if anyone knows.
Please see the image. I want to change this image.
NativeScript Sidekick makes changing assets like this for iOS and Android a breeze.It will help you by generating assets like the splash screen or app icon from a single image for all the different required resolutions.
https://www.nativescript.org/nativescript-sidekick
What you see upon launch is called Launch Screen or Splash Screen.
The default configuration allows you to showcase a static image upon launch, you may update the images for iOS at App_Resources/iOS/Assets.xcassets Or Android at App_Resources/Android/src/main/res/drawable-***/background.png
On iOS, you may design your own customised launch screen if you are familiar with Storyboard, the default story board file may be located atApp_Resources/iOS/Assets.xcassets/LaunchScreen.storyboard.
If you like some sort of animation upon launch screen, checkout nativescript-splashscreen plugin.

android- How to make educational semi-transparent images when app runs for the first time

I've seen this in some apps , When the user runs the application for the first time, it shows some semi transparent screen shots that points to a certain part and shows some texts under it .
What does it calls ? How can I make some for my application ?
Edit:
this is the image of what i mean :
thanks
I think you are looking for something like this
here's the github url: showcase
EDIT:
Then take a look at this
there are also some of library there but i', not sure it's work for you
lib
try this and let me know if it work for you.

create live wallpaper in viewpager android apps

Hi i have a app contain 3 page. and i want to set one page as background like android home screen. I search in google and i found this and this
tutorial's but i couldn't use it for my target can anyone show me another better example thanks.
i mean How can i create app like android home screen which have one picture for 5 pages background (in my phone).
at last i found my answer and that was so simpler that i think.
that was not a live wallpaper that was simple trick using scroolview for background of main layout and listen to onPageScrollStateChanged.
that's it.

Splash screen in Jquery Mobile

So I tried to make a splash screen based on the answer codaniel gave on this question. Thing is that I can't make it work proporly. First of all, if I integrate the splash screen in a single page and link it to a multipage, it keeps linking to the single page (even though I changed the link correctly). Secondly the splash screen bugs when it goes to the linked page. Anyone who has a solution for this?
It would be easier for you to use the splashscreen of cordova itself.

How to take a screen shot in android

I want to take a screen shot in android irrespective of the application and without rooting the phone. I have seen into the previous thread link
I followed this instructions but they are specific to one application. And we need to change the layout file of every application.
I also came across the link which is a library. One thing which is not clear to me in this is that whether the manifest.xml file should be changed for every application.
Can you please let me know if any other ways are possible? I know this is a security issue but if the application doesnt mind I need to take the screen shots.
Thanks.
if you don't need the status bar (or keyboard) you can do this in your activity:
View root = findViewById(android.R.id.content);
root.setDrawingCacheEnabled(true);
Bitmap bm = Bitmap.createBitmap(root.getDrawingCache());
root.setDrawingCacheEnabled(false);
Completely untested but it should work.
After seeing your comment about taking screenshots of other applications I do not believe that what you want is possible without rooting the phone.

Categories

Resources