日常的学习-7.11 res+AndroidManifest 笔记

时间:2024-07-12 07:02:49

android:layout_height='match_parent' 定义布局高度与父容器相匹配

android:orientation="vertical" 垂直方向排列子视图

tools:context 设定用于预览的上下文为:。。。。

android:backgroung : 设置背景为黑色

<EditText

android: id 设置 这个唯一标识符 id

android:editable 设置EditText 可不可以编辑 android:orientation="horizontal" 指定LinearLayout 或其他支持方向的布局容器的子视图排列方向。hori是视图水平排列 android:gravity="center_horizontal"> 用于设置视图内容在其可用空间内的水平对齐方式。 center 视图水平方向上居中对齐

<Button

android:background="@drawable/selector"/> <!-- 设置按钮的背景为selector资源 -->

selector

android:state_pressed:按下状态。

android:state_focused:聚焦状态。

android:state_checked:选中状态。

android:state_enabled:启用状态。

android:state_selected:选中状态。

android:state_hovered:悬停状态(通常用于鼠标悬停)。

selector 是 Android 中的一种资源文件,用于定义不同状态下的 UI 元素(如按钮、图片等)的外观。通过 selector,你可以为一个 UI 元素指定不同状态(如按下、聚焦、选中等)下的不同背景、图片或颜色,从而实现动态效果。

``:这是根元素,表示这是一个选择器(selector)资源。

``:每个 item 元素代表一个状态。

  • android:drawable:指定在这个状态下使用的资源,如颜色或图片。

  • android:state_pressed="true":表示按钮被按下的状态。还有其他状态可以使用,比如 state_focused(聚焦)、state_checked(选中)、state_enabled(启用)等。

默认状态的 item:在不满足其他任何状态时使用的资源。通常放在最后。

 <!-- 当按钮被按下时,使用 gray 作为背景 -->    <item android:drawable="@drawable/gray"          android:state_pressed="true"/>    <!-- 当按钮处于默认状态时,使用 white 作为背景 -->    <item android:drawable="@drawable/white"/>

shape

它是一种资源文件,用于定义可绘制的几何图形。 允许创建简单的图形元素,比如矩形 圆角矩形 椭圆 可以用它创建按钮的背景 分割线 边框

resources

`` 是 Android 资源文件中的根元素,用于定义各种类型的资源,如字符串、颜色、尺寸等。这些资源可以在应用程序的不同部分中被引用和使用,从而实现资源的集中管理和重用。

main下的AndroidMainifest.xml文件

application

包含应用程序相关的属性和组件声明

allowBackup

是否允许应用程序的数据备份

inco=@mipmap/ic_launcher

定义应用程序的图标

label=“@string/app_name"

定义圆形图标 适用于支持圆形图标的设备

supportsRtl="true"

是否支持从右到左的布局方向

theme="@style/Theme.TestApp"

应用程序的主题,指定应用程序使用的样式

appComponentFactory="androidx.core.app.CorecomponentFactory"

定义应用组件工厂类,用于实例化应用组件

requestLegacyExternalStorage="true"

请求使用旧版外部存储访问权限,适用于AndroidQ(29)及以上版本

tools:targetApi="31"

指定工具目标API级别,不影响实际运行时的行为

dataExtractionRules="@xml/data_extraction_rules"

指定数据提取规则文件的位置(不需要可以删除)

fullBackupContent="@xml/backup_rules"

指定完整备份内容文件的位置(可以删除)

android:name=".MainActivity" android.:exported="true"

定义一个活动组件‘android:name’指定活动类名

android:exported 指定活动是否可以由其他应用程序启动

intent-filter

活动的意图过滤器,决定该活动可以相应那些意图

android:name ="android.intent.action.MAIN"

指定活动为主入口活动,应用启动时的默认活动

android:name=“android.intent.categoty.LAUNCHER"

将活动添加到启动器中,使其出现在应用程序列表中。