課程
/移動(dòng)開發(fā)
/Android
/Android攻城獅的第二門課(第1季)
求manidest全部代碼
2016-10-26
源自:Android攻城獅的第二門課(第1季) 1-3
正在回答
<?xml version="1.0" encoding="utf-8"?><manifest package="gideview.com.example.gzh.myapplication" ? ? ? ? ?xmlns:android="http://schemas.android.com/apk/res/android"> ? ?<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> ? ?</application></manifest>
舉報(bào)
本課程由淺入深地帶您學(xué)會(huì)Android的常用控件的開發(fā)和使用
Copyright ? 2025 imooc.com All Rights Reserved | 京ICP備12003892號(hào)-11 京公網(wǎng)安備11010802030151號(hào)
購課補(bǔ)貼聯(lián)系客服咨詢優(yōu)惠詳情
慕課網(wǎng)APP您的移動(dòng)學(xué)習(xí)伙伴
掃描二維碼關(guān)注慕課網(wǎng)微信公眾號(hào)
2016-10-26
<?xml version="1.0" encoding="utf-8"?>
<manifest package="gideview.com.example.gzh.myapplication"
? ? ? ? ?xmlns:android="http://schemas.android.com/apk/res/android">
? ?<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>
? ?</application>
</manifest>