我需要知道何时单击其中一个元素
可以使用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>
答案 0 :(得分:0)
也许您可以通过创建下拉列表的实例,然后添加onClickListener从活动/片段代码中添加它。