我在底部的视图中使用IcsLinearLayout
,其中包含类似下面的按钮(我只是将它们设置为动作按钮)
<ImageButton
android:id="@+id/btSelectAll"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_margin="4dip"
android:layout_weight="1"
android:background="@drawable/abs__item_background_holo_dark"
android:gravity="center"
android:onClick="onClick"
android:scaleType="fitCenter"
android:src="@drawable/holo_dark_content_select_all" />
我现在想添加一个子菜单按钮,它看起来像工作栏中的子菜单按钮一样......
我怎么能实现这个目标?