我想在操作栏中添加一个切换开关,但似乎没有出现。 这就是我的屏幕 https://drive.google.com/file/d/0B1o-MgL-CQBFbml4VWZRdlptUWM/view?usp=sharing
我按照四分之一的另一篇文章来获取代码 - 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);
}
}
为什么开关没有出现,我只是误写了一些东西(如果是这样)或者我正在阅读的指南中是否有错误?
答案 0 :(得分:2)
更改
android:actionLayout="@layout/switch_layout"
到
app:actionLayout="@layout/switch_layout"