skip to Main Content

I have designed a main menu screen for my app, including the buttons and background and I want to know is it possible to link these buttons directly from background without putting each one of them in draw-able folder?
or do I have to put each one individually?

2

Answers


  1. same as eclipse put png file in drawable folder and set ::

    android:background="@drawable/imagename"
    
    Login or Signup to reply.
  2. Copy and paste all the files into your drawable folder and then link them to your xml attributes using.

    android:background="@drawable/filename"
    
    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search