自定义小部件 (Switch) 未出现在 ActionBar 中

Custom widget (Switch) not appearing in ActionBar

我想在我的操作栏上添加一个切换开关,但它似乎没有出现。 这就是我的屏幕 https://drive.google.com/file/d/0B1o-MgL-CQBFbml4VWZRdlptUWM/view?usp=sharing

我跟着另一个 post 的四人来获得代码 -- How to add a switch to android action bar? 尝试了所有建议的方法,但我目前使用的是 Ezequiel 的

这是我的代码

menu_main

<menu
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    tools:context="com.json.example.myapplication.MainActivity" >
    <item
        android:id="@+id/switchId"
        android:title=""
        app:showAsAction="always"
        android:actionLayout="@layout/switch_layout"/>
    <item
        android:id="@+id/action_settings"
        android:orderInCategory="100"
        android:title="@string/action_settings"
        app:showAsAction="never"/>
</menu>

switch_layout

    <?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="match_parent"
    android:orientation="horizontal" >
    <Switch
        android:id="@+id/switchAB"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerHorizontal="true"
        android:layout_centerVertical="true" />

</RelativeLayout>

展开菜单的活动

 package com.json.example.myapplication;

import android.support.v7.app.ActionBarActivity;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;


public class MainActivity extends ActionBarActivity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
    }


    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        // Inflate the menu; this adds items to the action bar if it is present.
        getMenuInflater().inflate(R.menu.menu_main, menu);

        return true;
    }

    @Override
    public boolean onOptionsItemSelected(MenuItem item) {
        // Handle action bar item clicks here. The action bar will
        // automatically handle clicks on the Home/Up button, so long
        // as you specify a parent activity in AndroidManifest.xml.
        int id = item.getItemId();

        //noinspection SimplifiableIfStatement
        if (id == R.id.action_settings) {
            return true;
        }

        return super.onOptionsItemSelected(item);
    }
}

为什么开关没有出现,我只是打错了什么(如果是的话)还是我正在阅读的指南中有错误?

改变

android:actionLayout="@layout/switch_layout"

app:actionLayout="@layout/switch_layout"