Android Studio目录的理解

Android Studio目录的理解_第1张图片

 

 

app :创建项目后,自动创建一个名称为app的目录

manifests:保存配置文件

java:保存java源代码文件

res:保存资源文件

Gradle Scripts:保存Gradle构建和属性文件

 

"1.0" encoding="utf-8"?>
"http://schemas.android.com/apk/res/android" //manifest根节点,描述了package中的所有内容
//xmlns:android包含命名空间的声明
    package="com.example.androiduidemo">//声明应用程序

    <application  
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"//应用程序图标
        android:label="@string/app_name"//应用程序标签,即为应用程序指定名称
        android:roundIcon="@mipmap/ic_launcher_round"
        android:supportsRtl="true"
        android:theme="@style/AppTheme">//应用程序采用的主题
        ".MainActivity">//与用户交互的主要工具
            //配置Intent过滤器
            //组件支持的Intent Action
                "android.intent.action.MAIN" />
            //组件支持的Intent  Category
                "android.intent.category.LAUNCHER" />
            
        
    

 

manifests节点

manifests节点用于显示Android应用程序的配置文件

你可能感兴趣的:(Android Studio目录的理解)