Android 缺少显示应用程序名称的 Studio 导航栏?
Android Studio Navigation bar showing Apps's name is missing?
当我在模拟器中启动应用程序时,我发现显示应用程序名称的导航栏丢失了。我可以知道发生了什么事吗?
public class MainActivity extends Activity implements OnClickListener {
EditText first_name;
EditText last_name;
Button button_submit;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
first_name = (EditText) findViewById(R.id.first_name);
last_name = (EditText) findViewById(R.id.last_name);
button_submit = (Button) findViewById(R.id.button_submit);
button_submit.setOnClickListener(this);
}
@Override
public void onClick(View v) {
Intent intent = new Intent(this, ViewActivity.class);
intent.putExtra("first_name", first_name.getText().toString());
intent.putExtra("last_name", last_name.getText().toString());
startActivity(intent);
}
}
Manifest.xml
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.yuqk.intent_usage">
<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>
<activity android:name=".ViewActivity"></activity>
</application>
Style.xml
<resources>
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
</style>
请参考截图以供参考。谢谢!
如果 toolbar
包含在 xml 中,请在 onCreate()
方法中添加这行代码,紧跟在 setContentView(R.layout.activity_main);
之后
Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
setSupportActionBar(toolbar);
您可能更改了 Style.xml 文件,主题样式为 NoActionBar
请改成
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
然后是运行
如果您像这样在 xml 文件中添加 toolbar
,请勾选此项
<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/AppTheme.AppBarOverlay">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
app:popupTheme="@style/AppTheme.PopupOverlay" />
</android.support.design.widget.AppBarLayout>
然后将此代码添加到您的 MainActivity.java
文件中。
Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
setSupportActionBar(toolbar);
并且在 Manifest.xml 中您使用了这个主题。
android:theme="@style/AppTheme.NoActionBar"
styles.xml 你有这个
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
</style>
<style name="AppTheme.NoActionBar">
<item name="windowActionBar">false</item>
<item name="windowNoTitle">true</item>
</style>
可能你有
android:theme="@style/AppTheme.NoActionBar"
在你的 AndroidManifest.xml
中。如果是这样,您需要将其更改为
android:theme="@style/AppTheme"
(假设您在 styles.xml
中定义了 AppTheme,父级 parent="Theme.AppCompat.Light.DarkActionBar"
或类似)。
布局编辑器中有一个名为 'Show layout decorations' 的选项
您必须关闭此选项。
android 工作室的手机屏幕上方有一个带有眼睛图像的按钮。单击它,应该会看到一个下拉菜单。检查'Show Layout Decorations',你的问题应该就解决了。
当我在模拟器中启动应用程序时,我发现显示应用程序名称的导航栏丢失了。我可以知道发生了什么事吗?
public class MainActivity extends Activity implements OnClickListener {
EditText first_name;
EditText last_name;
Button button_submit;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
first_name = (EditText) findViewById(R.id.first_name);
last_name = (EditText) findViewById(R.id.last_name);
button_submit = (Button) findViewById(R.id.button_submit);
button_submit.setOnClickListener(this);
}
@Override
public void onClick(View v) {
Intent intent = new Intent(this, ViewActivity.class);
intent.putExtra("first_name", first_name.getText().toString());
intent.putExtra("last_name", last_name.getText().toString());
startActivity(intent);
}
}
Manifest.xml
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.yuqk.intent_usage">
<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>
<activity android:name=".ViewActivity"></activity>
</application>
Style.xml
<resources>
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
</style>
请参考截图以供参考。谢谢!
如果 toolbar
包含在 xml 中,请在 onCreate()
方法中添加这行代码,紧跟在 setContentView(R.layout.activity_main);
Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
setSupportActionBar(toolbar);
您可能更改了 Style.xml 文件,主题样式为 NoActionBar
请改成
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
然后是运行
如果您像这样在 xml 文件中添加 toolbar
,请勾选此项
<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/AppTheme.AppBarOverlay">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
app:popupTheme="@style/AppTheme.PopupOverlay" />
</android.support.design.widget.AppBarLayout>
然后将此代码添加到您的 MainActivity.java
文件中。
Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
setSupportActionBar(toolbar);
并且在 Manifest.xml 中您使用了这个主题。
android:theme="@style/AppTheme.NoActionBar"
styles.xml 你有这个
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
</style>
<style name="AppTheme.NoActionBar">
<item name="windowActionBar">false</item>
<item name="windowNoTitle">true</item>
</style>
可能你有
android:theme="@style/AppTheme.NoActionBar"
在你的 AndroidManifest.xml
中。如果是这样,您需要将其更改为
android:theme="@style/AppTheme"
(假设您在 styles.xml
中定义了 AppTheme,父级 parent="Theme.AppCompat.Light.DarkActionBar"
或类似)。
布局编辑器中有一个名为 'Show layout decorations' 的选项 您必须关闭此选项。 android 工作室的手机屏幕上方有一个带有眼睛图像的按钮。单击它,应该会看到一个下拉菜单。检查'Show Layout Decorations',你的问题应该就解决了。