码迷,mamicode.com
首页 > 移动开发 > 详细

android 基础知识整理 1

时间:2016-01-16 19:41:35      阅读:153      评论:0      收藏:0      [点我收藏+]

标签:android   基础知识   

android 项目最重要的文件manifest.xml


<manifest xmlns:android="http://schemas.android.com/apk/res/android"

    package="com.qq.xgdemo"

    android:versionCode="1"

    android:versionName="1.0" >


    <uses-sdk

        android:minSdkVersion="8"

        android:targetSdkVersion="8" />


    <application

        android:name="com.qq.xgdemo.App"

        android:allowBackup="true"

        android:icon="@drawable/ic_launcher"

        android:label="@string/app_name"

        android:theme="@style/AppTheme" >

</application>

</manifest>


本文出自 “编程的点点滴滴” 博客,请务必保留此出处http://andylhx.blog.51cto.com/8891164/1735535

android 基础知识整理 1

标签:android   基础知识   

原文地址:http://andylhx.blog.51cto.com/8891164/1735535

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!