android的生成包的一些细节归纳

安装后程序的中文名称在哪里改

"true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"//这一个是你的APP应用的名字 这个可以改成中文
        android:theme="@style/AppTheme" >

如何查看程序主包名

"http://schemas.android.com/apk/res/android"  
      package="com.cola.ui"  
      android:versionCode="1"  
      android:versionName="1.0.0">

这个com.cola.ui就是了
查看Activity的方法

<application android:icon="@drawable/icon" android:label="@string/app_name">  
        <activity android:name=".ColaBox"  
                  android:label="@string/app_name">  
            <intent-filter>  
                <action android:name="android.intent.action.MAIN" />  

这个是.ColaBox就是了。完整的应该是com.cola.ui.ColaBox

你可能感兴趣的:(egret)