마스터Q&A 안드로이드는 안드로이드 개발자들의 질문과 답변을 위한 지식 커뮤니티 사이트입니다. 안드로이드펍에서 운영하고 있습니다. [사용법, 운영진]

빌드 후 어플 아이콘이 보이지 않음.

0 추천

usb케이블로 폰으로 연결해서 빌드를 하면 어플이 실행은 되는데 어플을 나가면 어플 아이콘을 찾을 수가 없네요.

최근 열어본 어플 목록에도 뜨는데 아이콘이 안떠서...ㅜㅜ

 

2015-06-14 03:12:12 - LouverControl] Android Launch!

[2015-06-14 03:12:12 - LouverControl] adb is running normally.

[2015-06-14 03:12:12 - LouverControl] Performing com.example.louvercontrol.Login activity launch

[2015-06-14 03:12:12 - LouverControl] Uploading LouverControl.apk onto device '1579b207'

[2015-06-14 03:12:13 - LouverControl] Installing LouverControl.apk...

[2015-06-14 03:12:19 - LouverControl] Success!

[2015-06-14 03:12:19 - LouverControl] Starting activity com.example.louvercontrol.Login on device 1579b207

[2015-06-14 03:12:19 - LouverControl] ActivityManager: WARNING: linker: app_process has text relocations. This is wasting memory and is a security risk. Please fix.

[2015-06-14 03:12:20 - LouverControl] ActivityManager: WARNING: linker: app_process has text relocations. This is wasting memory and is a security risk. Please fix.

[2015-06-14 03:12:20 - LouverControl] ActivityManager: Starting: Intent { act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] cmp=com.example.louvercontrol/.Login }

 
설치로그입니다.

 

처음 시작 액티비티 순서 건들이고나서 부터 안댓던것 같네요...

 

뭐가 문젠지...ㅜㅜ

 

<application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        
        <activity
            android:name=".Login"
            android:label="@string/app_name" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
 
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <activity android:name=".MainActivity" >
        </activity>
    </application>
 
매니페스트 소스입니다.
HeeGony (160 포인트) 님이 2015년 6월 14일 질문

1개의 답변

0 추천

<intent-filter>

                <action android:name="android.intent.action.MAIN" />
 
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
 
가 정의된 엑티비티에
 
android:icon="@drawable/ic_launcher"
 
아이콘 명시해 주세요;;;
dante2k (8,390 포인트) 님이 2015년 6월 16일 답변
...