如何使用下拉列表创建自定义操作栏

时间:2012-04-03 11:55:37

标签: android xamarin.android

我需要创建一个自定义操作栏,它会有一些图像按钮,点击它们会下拉菜单列表。

我使用线性布局设计了操作栏。

我在主要活动中附加了控件并处理了点击事件,但我不知道如何创建下拉控件。

我想将下拉控件放在单击按钮下方。我怎么能做到这一切呢?

这是我的操作栏代码

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
              android:background="#FFFFFF">
  <LinearLayout
      android:orientation="horizontal"
      android:layout_width="fill_parent"
      android:background="@drawable/actionbar_background"
      android:layout_height="65dp">
    <Button android:id="@+id/btntest"
            android:layout_marginLeft="50dp"
            android:text="Sup"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"/>
    <Button android:id="@+id/btntest1"
            android:layout_marginLeft="100dp"
            android:text="Company"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"/>
    <Button android:id="@+id/btntest2"
            android:layout_marginLeft="100dp"
            android:text="Client"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"/>
  </LinearLayout>
  <LinearLayout
      android:layout_alignParentBottom="true"
      android:orientation="horizontal"
      android:layout_width="fill_parent"
      android:layout_height="fill_parent">
  </LinearLayout>
</FrameLayout>

1 个答案:

答案 0 :(得分:0)

您可以使用ActionProvider类可以使用的动作提供程序来执行此操作...

它用自定义布局替换了一个操作项,但它也控制了所有项的行为。

除了控制项目的外观外,它还处理菜单的默认事件......

查看链接以获取更多信息......

http://developer.android.com/guide/topics/ui/actionbar.html#ActionView