gpt4 book ai didi

android-studio - 为什么我使用 Android Studio 创建应用时,标题栏中的应用图标不显示?

转载 作者:行者123 更新时间:2023-12-03 16:11:17 25 4
gpt4 key购买 nike

在我用eclipse创建Android App之前,它可以在标题栏左侧显示app图标,请看图片aa.png。

现在我使用 Android Studio 创建 Android 应用程序,我添加了代码 android:icon="@mipmap/ic_launcher"到manifest.xml文件,但是app图标不显示,请看图片bb.png,为什么?

顺便说一句,如果我替换 compile 'com.android.support:appcompat-v7:22.1.1',图标可以显示与 compile 'com.android.support:appcompat-v7:18.0.0' , 为什么? com.android.support:appcompat-v7:22.1.1 有一些错误吗?

aa.png

enter image description here

bb.png

enter image description here

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.cuiwei.myapplication" >

<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name=".MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>

</manifest>

<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>



apply plugin: 'com.android.application'

android {
compileSdkVersion 22
buildToolsVersion "22.0.1"

defaultConfig {
applicationId "com.example.cuiwei.myapplication"
minSdkVersion 9
targetSdkVersion 22
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:22.1.1'
}

<resources>

<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<!-- Customize your theme here. -->
</style>

</resources>

最佳答案

<activity
android:name=".MainActivity"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>

如果它不起作用,您应该调用 getSupportActionBar().setIcon(Drawable/int)getSupportActionBar().setLogo(Drawable/int)在您的 Activity .

关于android-studio - 为什么我使用 Android Studio 创建应用时,标题栏中的应用图标不显示?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31396665/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com