不知道发生了什么,我无法再在 Android Studio 中获取带有操作栏的应用程序。
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
和
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity"
tools:ignore="MergeRootFrame">
<TextView
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:text="hello"/>
</LinearLayout>
例如。它不会显示操作栏。