我正在尝试开发一个简单的天气预报应用。 Android Studio v2.2 最低SDK设置为API10:Gingerbread。
问题 - 我的第一页上需要搜索城市选项。所以我只是编辑了 menu_main.xml 文件并添加了该选项。 我的问题是搜索城市选项出现在' design'和预览' menu_main.xml 的部分,但在检查“设计”或“预览”时不会显示。我的 activity_main.xml 部分。
我已将主题设置为@ style / AppTheme in manifest。
In that red highlighted part I want my menu to appear..
我的菜单文件是 -
<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=".MainActivity" >
<item
android:id="@+id/change_city"
android:orderInCategory="100"
android:title="@string/change_city"
app:showAsAction="always"/>
</menu>
我的mainactivity.xml是 -
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:background="#ff1ba1ee"``
tools:context="com.example.hp.theweatherapp.MainActivity">
我没有添加整个xml,因为它只包含简单的TextView。
我的MainActivity.java是 -
package com.example.hp.theweatherapp;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
}
Manifests.xml是 -
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.hp.theweatherapp">
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
</application>
</manifest>
感谢任何帮助..谢谢..
答案 0 :(得分:1)
我认为问题在于您没有在活动中夸大菜单。添加到您的MainActivity.java
此代码:
@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.change_city) {
return true;
}
return super.onOptionsItemSelected(item);
}
要创建ActionBar按钮,请检查:Creating a button in Android Toolbar