미채택 완료

안드로이드 웹뷰 만드는데 잘되던게 갑자기 안됩니다...

2018-10-05 (금) 19:45:43 2,886

안드로이드 스튜디오를 지우고 재설치후 sir에 올려있는 웹뷰 소스를 불러오는데 에러가 납니다.

<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.hybrid.sample"> <uses-permission android:name="android.permission.INTERNET" /> <application android:allowBackup="true" android:icon="@mipmap/ic_launcher" android:label="@string/app_name" android:supportsRtl="true" android:theme="@style/Theme.AppCompat.NoActionBar" > <activity android:name=".SplashActivity" android:configChanges="orientation|keyboardHidden" android:screenOrientation="portrait" android:theme="@android:style/Theme.NoTitleBar" /> <activity android:name=".MainActivity" android:screenOrientation="portrait" > <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> </application> </manifest>

android들어가있는모든부분이 빨간색으로 되는데 왜 그런걸까요 ㅜㅜ

앞전에는 잘됬습니다.

이것땜에 수십번지웠다 설치했다 하는데 안됩니다 ㅜㅜ

도와주세요~

|

답변 1개 / 댓글 3개

2018-10-05 (금) 19:52:49

<manifestxmlns

를 아래같이 띄워보세요

<manifest xmlns

답변에 대한 댓글 3개

그건 띄워있습니다 ㅜㅜ
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.hybrid.sample">
<uses-permission android:name="android.permission.INTERNET" />
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/Theme.AppCompat.NoActionBar" >

<activity
android:name="com.hybrid.yongajae.SplashActivity"
android:configChanges="orientation|keyboardHidden"
android:screenOrientation="portrait"
android:theme="@android:style/Theme.NoTitleBar" />

<activity
android:name="com.hybrid.yongajae.MainActivity"
android:screenOrientation="portrait"
>
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>

</manifest>
Could not open settings remapped class cache for 9khs0qj4gyiyra4guh5oezmza
이런메세지가 뜨는데 ㅜㅜ 무슨말일까요??

답변을 작성하려면 로그인이 필요합니다.