課程
/移動開發
/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>
舉報
本課程由淺入深地帶您學會Android的常用控件的開發和使用
Copyright ? 2025 imooc.com All Rights Reserved | 京ICP備12003892號-11 京公網安備11010802030151號
購課補貼聯系客服咨詢優惠詳情
慕課網APP您的移動學習伙伴
掃描二維碼關注慕課網微信公眾號
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>