Oleg wrote:Hi all!Anybody know, how can I build my menu like this(see atachment image)
it's not so difficult. I would say 8 of 10

use "Gallery" to create such component. You also may need TextView (label) and 2xImageView (arrow icons)
then use getContentResolver().query(android.provider.Settings.Favorites.CONTENT_URI, null, null, null, null); to get Cursor to Favorites list. Then you can get intent, app title and also Drawable icon (using PackageManager).
then create your own ArrayAdapter. Override getView method (to display icon). Set your adapter to the gallery.