我正在尝试制作一个自定义微调器,它可以直到我们点击它并且箭头像图像一样消失:
Xml代码:
<android.support.v7.widget.CardView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/margin"
android:elevation="@dimen/elevation" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="@dimen/component_height" >
<Spinner
android:id="@+id/add_spinner_account"
android:layout_width="match_parent"
android:layout_height="@dimen/component_height"/>
</RelativeLayout>
</LinearLayout>
</android.support.v7.widget.CardView>
如果我使用普通的微调器,它可以工作,但我需要这个自定义微调器...... 发生了什么??有人可以帮忙吗?