app/src/main/res/layout/dropdown_menu_layout.xml
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/dropdown_menu_container"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:id="@+id/anchor_view"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="16dp"
android:text="Click me"
android:textSize="18sp" />
<ListView
android:id="@+id/dropdown_menu_list"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/anchor_view" />
</RelativeLayout>