Iam newbie in Android development, and I have one stupid question.
Is all pretty menu from android applications it’s just different pictures that changes on another pictures when somebody doing actions on them (click, hold, etc…)?
something like this:
ImageView img = (ImageView) findViewById(R.id.myImageId);
img.setOnClickListener(new OnClickListener() {
public void onClick(View v) {
// changing picture here.
}
});
And main question is which container do you use for them, just image?
Where i can found some tutorials about creating menu for android that will look pretty.
For example this menu
Also i will be glad to see how you realized your menu(best practice)?
look at this example for creating menu How to Create Android Menus
from android developer Menu it describes types of menus available in andorid.
Customs menus like this
Example one
Example two