如何在BootstrapDropDown的项目中添加onclick事件

时间:2019-07-05 13:23:37

标签: java android-layout android-bootstrap

我需要知道何时单击其中一个元素

可以使用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>

1 个答案:

答案 0 :(得分:0)

也许您可以通过创建下拉列表的实例,然后添加onClickListener从活动/片段代码中添加它。