要素の 1 つをクリックしたときに知る必要があります
「android:onClick」を使用してxmlから実行できますか? これは私のコードです:
<com.beardedhen.androidbootstrap.BootstrapDropDown
app:bootstrapExpandDirection="up"
android:text="Cards"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:background="#ea2c2c"
app:bootstrapBrand="primary"
app:bootstrapSize="lg"
app:dropdownResource="@array/dropdown_cards"
app:showOutline="false"/>
@array/dropdown_cards :
<resources xmlns:android="http://schemas.android.com/apk/res/android">
<string-array name="dropdown_cards">
<item android:onClick="btnCardOption">@string/analyze</item>
<item>@string/history</item>
</string-array>