如何使用FragmentActivity创建标题栏/设置菜单?
作者:互联网
我创建了一个ActionBarActivity测试应用程序,该应用程序显示标题栏和确定菜单.我将ActionBarActivity扩展更改为FragmentActivity并运行该程序,但未显示标题栏/菜单.
我在真实的应用程序中使用了ViewPager的滑动选项卡,因此无法扩展ActionBarActivity.
在How to Create option menu in FragmentActivity?中也类似地提出了这个问题-但答案并不明显.
MainActivity.java
public class MainActivity extends FragmentActivity {
@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 super.onCreateOptionsMenu(menu);
}
@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);
}
}
menu_main.xml
<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/action_settings"
android:title="@string/action_settings"
android:orderInCategory="100"
app:showAsAction="never" />
</menu>
activity_main.xml
<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:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:paddingBottom="@dimen/activity_vertical_margin"
tools:context=".MainActivity"
>
<TextView
android:text="@string/hello_world"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
/>
</RelativeLayout>
解决方法:
问题是FragmentActivity没有ActionBar. ActionBarActivity(它是FragmentActivity的子类)的目的是提供必要的功能,以在您的内容中显示ActionBar.如果您不想使用ActionBarActivity(或经过改进的新AppCompatActivity),请使用新的类Toolbar,该类允许您将类似ActionBar的View直接嵌入到布局中.
标签:optionmenu,android-fragmentactivity,android 来源: https://codeday.me/bug/20191028/1952362.html