Search code examples
htmltizen

Android application on Tizen


I am working on Tizen. Developing an application on Tizen which has been already developed by me on Android.

I have to place an image in the background.and then place button on it. Click on that button and receive its action in javascript.

How can I place image in the background.

Is their any way to transfer android application on Tizen platform.

Can we make our android application on Tizen?


Solution

  • background-image in CSS can do it.

    E.g. put mesh_background_1280x720.jpg into images directory than fix your style.css:

    body {
        background-image: url("../images/mesh_background_1280x720.jpg");
    }
    

    For me this works.