Android学习笔记-1.Android工程结构

1、andriod程序安装卸载:
adb install sl.apk
sdb uninstall com.sky.mine
2、每一个Activity对象是一个单独的实体,程序中有可能会有多个Activity,
   但是每次只有一个能展现在用户面前
   onCreate()会在Activity运行时背Android系统调用
3、结构
   src:java源文件
    public class MainActivity extends Activity
    {

        @Override
        protected void onCreate(Bundle savedInstanceState)
        {
            super.onCreate(savedInstanceState);
            setContentView(R.layout.activity_main);
        }

        @Override
        public boolean onCreateOptionsMenu(Menu menu)
        {
            // Inflate the menu; this adds items to the action bar if it is present.
            getMenuInflater().inflate(R.menu.main, menu);
            return true;
        }

    }
   gen:自动生成的文件
   assets:大型资源文件,eg.字体,视频,音频文件
   res:source文件,图片,xml配置信息,小的音频文件
       layout:布局文件,屏幕显示的
               activity_main.xml
                               android:layout_width="wrap_content"  //fill_parent-填充容器
                android:layout_height="wrap_content" //填充内容
                android:text="@string/hello_world" />//调用string.hello_world元素
        menu:控件定义
        values:存放变量的
                string.xml
                1.HelloWorld
                Settings
                Hello world!
         AndroidManifest.xml:安卓清单文件
                     package="com.example.helloworld.activity"
            android:versionCode="1"
            android:versionName="1.0" >
            /* SDK的最低版本说明 */
                            android:minSdkVersion="8"
                android:targetSdkVersion="18" />

                            android:allowBackup="true"
                android:icon="@drawable/ic_launcher"
                android:label="@string/app_name"    //程序的名字
                android:theme="@style/AppTheme" >
                                    android:name="com.example.helloworld.activity.MainActivity" //也可以简写成.MainActivity
                    android:label="@string/app_name" >  //程序运行时上方显示的字符
                   
                        //显示该activity是程序的main方法,即程序入口
                       
                   

               
           
       

 

你可能感兴趣的:(Android)