如何从应用程序中删除标签
how to remove label from application
我今天使用名为“A.I.D.E”的应用程序制作了我的第一个应用程序。我是 android 用户,这是我第一次制作应用程序,如何从主屏幕顶部删除我的应用程序名称和标签?我将我的应用程序命名为“YT Studio”,但我不想在主屏幕顶部显示此名称和标签,我希望它是空白的,有人可以帮助我吗?我给了你我的 android manifest.xml
和 main.java
文件供你参考,我很乐意编辑我的问题以便将来获得更多帮助。
android manifest.xml
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.ojhastudios.ytstudio" >
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="YT Studio"
android:theme="@style/AppTheme"
android:resizeableActivity = "true">
<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>
main.xml
<LinearLayout
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"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:text="@string/hello_world"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="30dp" />
</LinearLayout>
编辑:一位小伙伴向我要代码,好了
package com.mycompany.myapp;
import android.app.*;
import android.os.*;
public class MainActivity extends Activity
{
@Override
protected void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
getSupportActionBar().hide();
}
}
转到 src/main/res/values 并打开 theme.xml :
然后将您的样式名称更改为 NoActionBar ,它会删除您的操作栏:
转到res >> 值 >> 主题
<style name="Theme.MyAppTheme" parent="Theme.MaterialComponents.Light.NoActionBar">
...
...
</style>
将其更改为 Theme.MaterialComponents.Light.NoActionBar
,这里的魔法是 NoActionBar 并且您的工具栏将被完全删除,包括应用程序标题名称。但是你应该知道这一点,在你更改它之后,它将从你的整个项目中删除,而不仅仅是单个 activity.
你可以打电话
getSupportActionBar().hide();
在您的 activity 的 onCreate()
方法中。
编辑
上面给出的方法在使用AndroidX时不起作用activity。它适用于 AppCompatActivity
.
所以,这个答案将完成任务。
在您的 AndroidManifest.xml
中,找到您的 activity 然后您应该在其中添加这一行:
<application>
...
<activity
android:name=".MainActivity"
android:theme="@style/Theme.MaterialComponents.Light.NoActionBar">
...
</activity>
...
</application>
我今天使用名为“A.I.D.E”的应用程序制作了我的第一个应用程序。我是 android 用户,这是我第一次制作应用程序,如何从主屏幕顶部删除我的应用程序名称和标签?我将我的应用程序命名为“YT Studio”,但我不想在主屏幕顶部显示此名称和标签,我希望它是空白的,有人可以帮助我吗?我给了你我的 android manifest.xml
和 main.java
文件供你参考,我很乐意编辑我的问题以便将来获得更多帮助。
android manifest.xml
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.ojhastudios.ytstudio" >
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="YT Studio"
android:theme="@style/AppTheme"
android:resizeableActivity = "true">
<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>
main.xml
<LinearLayout
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"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:text="@string/hello_world"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="30dp" />
</LinearLayout>
编辑:一位小伙伴向我要代码,好了
package com.mycompany.myapp;
import android.app.*;
import android.os.*;
public class MainActivity extends Activity
{
@Override
protected void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
getSupportActionBar().hide();
}
}
转到 src/main/res/values 并打开 theme.xml :
然后将您的样式名称更改为 NoActionBar ,它会删除您的操作栏:
转到res >> 值 >> 主题
<style name="Theme.MyAppTheme" parent="Theme.MaterialComponents.Light.NoActionBar">
...
...
</style>
将其更改为 Theme.MaterialComponents.Light.NoActionBar
,这里的魔法是 NoActionBar 并且您的工具栏将被完全删除,包括应用程序标题名称。但是你应该知道这一点,在你更改它之后,它将从你的整个项目中删除,而不仅仅是单个 activity.
你可以打电话
getSupportActionBar().hide();
在您的 activity 的 onCreate()
方法中。
编辑
上面给出的方法在使用AndroidX时不起作用activity。它适用于 AppCompatActivity
.
所以,这个答案将完成任务。
在您的 AndroidManifest.xml
中,找到您的 activity 然后您应该在其中添加这一行:
<application>
...
<activity
android:name=".MainActivity"
android:theme="@style/Theme.MaterialComponents.Light.NoActionBar">
...
</activity>
...
</application>