基础概念
- Android的界面是承载在一个或者多个Activity上。
- Activity上可以显示fragment。
- 布局文件一般写在xml上。
- Android控件分为View和ViewGroup两种类型。
- 在Activity中,可以通过findViewById(R.id.控件id) 来获取指定id的控件对象进行操作。
第一个Android程序
????????第一个Android程序
View 和 ViewGroup
????????在Android视图中,View是在屏幕绘制用户能与之交互的一个对象,而ViewGroup则是一个用于存放View(和ViewGroup)对象的布局容器。 ????????类似ConstraintLayout,LinearLayout继承的就是ViewGroup,而TextView继承的是View.
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<TextView
android:id="@+id/tv_one"
android:layout_width="match_parent"
android:layout_height="200dp"
android:gravity="center"
android:singleLine="true"
android:ellipsize="marquee"
android:marqueeRepeatLimit="marquee_forever"
android:focusable="true"
android:focusableInTouchMode="false"
android:clickable="true"
android:text="@string/tv_one"
android:textColor="@color/purple_500"
android:textSize="20dp"
tools:ignore="MissingConstraints"
tools:layout_editor_absoluteX="0dp">
<requestFocus/>
</TextView>
</androidx.constraintlayout.widget.ConstraintLayout>
Android控件通用属性
属性 | 描述 |
---|
layout_width | 宽 | layout_height | 高 | padding | 内边距 | margin | 外边距 | visibility | visible:显示; invisible:不现实但是占用空间; gone:不显示也不占用空间 | focusable | 是否可以获取焦点 | enabled | 是否启用该控件 | background | 背景色,16进制值 | id | 唯一标识符(id必须唯一),用于定位该控件 |
|