在应用程序Astrid Tasks中,有一个按钮。当您按下按钮时,会出现一个下拉菜单。



它基本上是一个微调器,但采用下拉列表形式。

有人知道如何做类似的事情吗?这是我只是看不到的小部件吗?

最佳答案

作为此书的原始作者(我是Astrid的主要Android开发者之一),我很乐意分享Astrid的工作方式。我将在此处发布基础知识,但您可以在我们的github存储库(https://github.com/todoroo/astrid)中找到更多详细信息。基本想法是按照hanry的建议扩展GreenDroid的QuickActionWidget。子类看起来像:

public class MenuPopover extends QuickActionWidget {

    protected DisplayMetrics metrics;
    protected LinearLayout content;

    public MenuPopover(Context context) {
        super(context);
        setContentView(R.layout.my_layout);

        content = (LinearLayout) getContentView().findViewById(R.id.content);
        metrics = context.getResources().getDisplayMetrics();

        setFocusable(true);
        setTouchable(true);
    }

    @Override
    protected void populateQuickActions(List<QuickAction> quickActions) {
        // Do nothing
    }

    @Override
    protected void onMeasureAndLayout(Rect anchorRect, View contentView) {
        contentView.setLayoutParams(new     FrameLayout.LayoutParams(ViewGroup.LayoutParams.WRAP_CONTENT,     ViewGroup.LayoutParams.WRAP_CONTENT));
        contentView.measure(MeasureSpec.makeMeasureSpec(getScreenWidth(),     MeasureSpec.EXACTLY),
                ViewGroup.LayoutParams.WRAP_CONTENT);

        int rootHeight = contentView.getMeasuredHeight();

        int offsetY = getArrowOffsetY();
        int dyTop = anchorRect.top;
        int dyBottom = getScreenHeight() - anchorRect.bottom;

        boolean onTop = (dyTop > dyBottom);
        int popupY = (onTop) ? anchorRect.top - rootHeight + offsetY : anchorRect.bottom -  offsetY;

        setWidgetSpecs(popupY, onTop);
    }
}

布局文件my_layout.xml非常简单:
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content">
    <RelativeLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:paddingLeft="10dip">

        <LinearLayout
                android:id="@+id/content"
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:layout_below="@+id/gdi_arrow_up"
                android:orientation="vertical"/>

        <ImageView
            android:id="@+id/gdi_arrow_up"
            android:layout_width="27dip"
            android:layout_height="27dip"
            android:layout_marginLeft="-10dip"
            android:scaleType="fitCenter"
            android:layout_marginBottom="-8dip"
            android:src="?attr/asListArrowUp" />

        <ImageView
            android:id="@+id/gdi_arrow_down"
            android:layout_width="27dip"
            android:layout_height="27dip"
            android:scaleType="fitCenter"
            android:layout_marginBottom="-8dip"
            android:layout_below="@android:id/list"/>

        </RelativeLayout>
</FrameLayout>

然后,您可以在popover类中添加一个简单的辅助方法,以将 View (即行,带有可选的监听器)添加到popover的主体中:
public void addViewToContent(View v, OnClickListener listener) {
    content.addView(v);
    if (listener != null) {
        v.setOnClickListener(listener);
    }
}

创建弹出窗口的实例后,可以通过调用来显示它
menuPopover.show(anchorView);

这是一个稍微简化的版本-实际上,我们在这些 View 上附加了一些附加信息,监听器等,以使它们在单击时实际起作用。如果需要,可以在https://github.com/todoroo/astrid处查看完整代码-该类是com.todoroo.astrid.ui.MainMenuPopover。

感谢您使用Astrid!

关于android - 自定义微调器/下拉菜单,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/9833621/

10-10 10:15