6

我正在寻找一个示例,如何将带有一系列项目的微调器项目添加到 Android Menu Options 。

我看了很多例子,但没有任何简单的例子我可以很好。我想在屏幕顶部的操作栏中添加一个项目。

4

3 回答 3

4

这真的很容易,当您创建一个新项目时,您一开始就可以选择。

看看我附上的图片,你会得到更多的想法。

喜欢我的回答,如果对你有帮助的话。

谢谢

在此处输入图像描述

于 2013-10-07T01:06:35.250 回答
1

带有 IcsLinearLayout 的操作栏 Sherlock 右侧的微调器

右侧的 ABS 自定义微调器

private String[] mLocations;

ActionBar actionBar = getSupportActionBar();
    final Context themedContext = actionBar.getThemedContext();

    ArrayAdapter<String> adapter = new ArrayAdapter<String>(themedContext,
            R.layout.sherlock_spinner_item, mLocations);
    adapter.setDropDownViewResource(R.layout.sherlock_spinner_dropdown_item);

    // create ICS spinner
    spinner = new IcsSpinner(this, null, R.attr.actionDropDownStyle);
    spinner.setAdapter(adapter);
    spinner.setOnItemSelectedListener(new OnItemSelectedListener() {
        @Override
        public void onItemSelected(IcsAdapterView<?> parent, View view,
                int position, long id) {

        }

        @Override
        public void onNothingSelected(IcsAdapterView<?> parent) {
        }
    });

    // configure custom view
    IcsLinearLayout listNavLayout = (IcsLinearLayout) getLayoutInflater()
            .inflate(R.layout.abs__action_bar_tab_bar_view, null);
    LinearLayout.LayoutParams params = new LinearLayout.LayoutParams(
            LayoutParams.WRAP_CONTENT, LayoutParams.MATCH_PARENT);
    params.gravity = Gravity.CENTER;
    listNavLayout.addView(spinner, params);
    listNavLayout.setGravity(Gravity.RIGHT); //align the spinner to the right

    // configure action bar
    actionBar.setCustomView(listNavLayout, new ActionBar.LayoutParams(
            Gravity.RIGHT));
于 2013-10-07T07:48:24.570 回答
0

您可以在此处获得解决方案的完整答案

于 2013-10-07T07:06:34.600 回答