I wanna make a dropdown-menu like the one in the attached picture in android I searched a lot but I Couldn't find anything?
Could you tell me how to start?

I wanna make a dropdown-menu like the one in the attached picture in android I searched a lot but I Couldn't find anything?
Could you tell me how to start?

If you are trying to do something where you see a list of items as you type in text into a TextView, you may be looking for an AutoCompleteTextView. An implementation example can be found here.
If you are trying for the more usual drop down menu, you may want to use a Spinner widget. An example of its implementation can be found here.
Let me know if you need any more help.
Android does not generally use a "dropdown-menu" like the one you have in your screenshot. I encourage you to learn the Android UI framework and stick to it.
In Honeycomb (the tablet UI), there is the "nav mode" of the action bar that will look a bit similar, though it is not designed to be a menu.
Spinner or an options menu or something else is the right answer.Spinner widgets as of Honeycomb use the in-place dropdown style by default. android.widget.PopupMenu also offers a simple API for presenting these style menus anchored to arbitrary views.PopupMenu will be frowned upon. Combine that with the need to support the 99.4% of Android devices in use today that run pre-Honeycomb versions of Android, and I am not comfortable advising people to employ a "dropdown-menu" UI at this time. If UX folk at Google have recommendations for us in this area, I'd love to hear them!Your best bet is going to be to make a view with the menu you want. Then make an animation that will grow the X and Y scale over some amount of time.
Ex:
android:fromXScale="0.1"
android:toXScale="1.0"
android:fromYScale="0.1"
android:toYScale="1.0"
android:pivotX="50%"
android:pivotY="0%"
android:duration="@android:integer/config_shortAnimTime"
Then all you have to do is apply the application to your view in the appropriate onclicklistener