安卓阶段性学习成果

1.Android布局管理器

安卓应用中的布局管理器是用于控制和组织界面中视图元素的工具。Android提供了多种布局管理器,每个管理器都有不同的特点和用途。

1.1 线性布局(LinearLayout):

线性布局是Android中一种常用的布局方式,它可以将子视图按照水平或垂直方向排列。线性布局是最简单、最常用的布局方式之一。

线性布局有两个重要的属性:orientation和gravity。

orientation属性用于指定子视图的排列方向,可以取值为horizontal(水平方向)或vertical(垂直方向)。默认值为horizontal。

gravity属性用于指定子视图的对齐方式,可以取值为start、center、end、top、bottom等。默认值为start。

例如,以下代码展示了一个垂直方向的线性布局:

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">

    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Button 1" />

    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Button 2" />

    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Button 3" />

</LinearLayout>
 

1.2 约束布局(ConstraintLayout):

约束布局是Android中一种灵活的布局方式,它使用约束来定义视图之间的位置和关系,从而允许开发者创建复杂且响应式的用户界面。

约束布局的特点包括:

相对定位:视图元素可以相对于其他元素或父容器进行定位。可以通过设置视图元素与其他元素的位置关系,比如对齐、居中、水平或垂直对齐等。

强大的约束关系:约束布局支持多种约束关系,包括水平约束、垂直约束、宽度约束、高度约束等。可以通过设置视图元素的约束关系来控制其在布局中的位置和大小。

响应式布局:约束布局支持自适应屏幕大小变化。可以通过设置视图元素的约束条件,使其在不同屏幕尺寸下自动调整布局。

链式布局:约束布局支持链式布局,可以将多个视图元素连接在一起形成链条。可以通过设置链式布局的约束条件来调整链中各个元素的位置和大小。

<androidx.constraintlayout.widget.ConstraintLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <Button
        android:id="@+id/button1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Button 1"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintEnd_toEndOf="parent"/>

    <Button
        android:id="@+id/button2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Button 2"
        app:layout_constraintStart_toEndOf="@id/button1"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintEnd_toEndOf="parent"/>

    <Button
        android:id="@+id/button3"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Button 3"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toBottomOf="@id/button1"
        app:layout_constraintEnd_toEndOf="parent"/>

    <Button
        android:id="@+id/button4"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Button 4"
        app:layout_constraintStart_toEndOf="@id/button3"
        app:layout_constraintTop_toBottomOf="@id/button2"
        app:layout_constraintEnd_toEndOf="parent"/>

</androidx.constraintlayout.widget.ConstraintLayout>
 

这个例子中,我们创建了一个约束布局,其中包含四个按钮。这些按钮通过约束关系来定位和调整大小。在这个例子中,第一个按钮(button1)位于布局的左上角,第二个按钮(button2)位于第一个按钮的右边,第三个按钮(button3)位于第一个按钮的下方,第四个按钮(button4)位于第三个按钮的右边。

1.3表格布局(TableLayout):

表格布局(TableLayout)是一种在Android中用于创建多列多行的布局方式。它类似于HTML中的表格布局方式,可以在每个单元格中放置其他的控件或布局。

表格布局通过定义行(TableRow)和列(TableColumn)来组织控件的排列。可以通过在XML布局文件中使用<TableLayout>、<TableRow>和<TableColumn>标签来创建表格布局。

在表格布局中,每个<TableRow>标签表示一行,并且可以包含多个<TableColumn>标签来定义列。每个<TableColumn>标签中可以放置一个或多个控件。

以下是一个简单的表格布局的示例:

<TableLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content">

    <TableRow>
        <TextView
            android:text="Name" />
        <TextView
            android:text="Age" />
        <TextView
            android:text="Gender" />
    </TableRow>

    <TableRow>
        <TextView
            android:text="John Doe" />
        <TextView
            android:text="25" />
        <TextView
            android:text="Male" />
    </TableRow>

    <TableRow>
        <TextView
            android:text="Jane Smith" />
        <TextView
            android:text="30" />
        <TextView
            android:text="Female" />
    </TableRow>

</TableLayout>
 

在上面的示例中,<TableLayout>标签表示整个表格布局,<TableRow>标签表示每一行,<TableColumn>标签表示每一列。每个<TableRow>标签中包含三个<TextView>标签,分别显示姓名、年龄和性别。

1.4帧布局(FrameLayout):

帧布局是一种最简单的布局方式,它将子视图按照层叠的方式进行布局。在帧布局中,子视图会在屏幕上重叠显示,只有一个子视图是可见的。

帧布局的特点是:

子视图的位置可以通过设置左上角坐标来调整。

子视图的大小可以通过设置宽度和高度来调整。

子视图默认会居中显示,但可以通过设置gravity属性来调整其位置。

后添加的子视图会叠加在前面的子视图上方。

帧布局的示例代码如下:

<FrameLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <ImageView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:src="@drawable/image1" />

    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Button"
        android:layout_gravity="center" />

</FrameLayout>
 

上述代码中,帧布局中包含了一个ImageView和一个Button,ImageView用于显示一张图片,Button用于显示一个按钮。通过设置Button的layout_gravity属性为center来实现居中显示。

1.5相对布局(RelativeLayout):

相对布局是一种灵活的布局方式,可以根据组件之间的相对位置来确定它们的位置。相对布局中的组件可以相对于父容器或其他组件进行定位。

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <Button
        android:id="@+id/button1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Button 1"
        android:layout_alignParentTop="true"
        android:layout_alignParentLeft="true"
        />

    <Button
        android:id="@+id/button2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Button 2"
        android:layout_alignParentTop="true"
        android:layout_alignParentRight="true"
        />

    <Button
        android:id="@+id/button3"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Button 3"
        android:layout_below="@id/button1"
        android:layout_centerHorizontal="true"
        />

    <Button
        android:id="@+id/button4"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Button 4"
        android:layout_alignParentBottom="true"
        android:layout_centerHorizontal="true"
        />

</RelativeLayout>
 

这是一个简单的相对布局样例,其中有四个按钮,通过不同的相对位置属性来控制它们的位置。你可以根据自己的需要在布局文件或代码中进一步添加和调整组件的相对位置。

2.Android 常用控件

2.1TextView:

TextView控件是Android中用于显示文本内容的控件。它可以在界面上显示静态文本、动态文本以及格式化文本。

<TextView
    android:id="@+id/myTextView"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Hello, World!"
    android:textSize="18sp"
    android:textColor="@color/black" />
 

2.2EditText:

EditText是Android中常用的用户输入控件之一,用于接收用户的文本输入

创建EditText控件: 可以在布局文件中使用<EditText>标签来创建EditText控件,也可以在Java代码中使用new EditText(context)来创建。例如,在布局文件中创建一个简单的EditText控件:

<EditText
    android:id="@+id/editText"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:hint="请输入文本"
    android:inputType="text"
    />
 

在Java代码中创建EditText控件:

EditText editText = new EditText(context);
 

 2.3Button:

Button控件是一种常见的用户界面元素,用于触发特定的操作或执行特定的功能。它通常以可点击的形式显示在屏幕上,并且可以被用户点击或触摸来触发相应的动作。

当用户点击Button时,弹出一个Toast消息。

Button button = findViewById(R.id.button); // 获取Button控件实例

button.setOnClickListener(new View.OnClickListener() {
    @Override
    public void onClick(View v) {
        Toast.makeText(getApplicationContext(), "Button被点击了", Toast.LENGTH_SHORT).show();
    }
});
 

在XML布局文件中,添加一个Button控件:

<Button
    android:id="@+id/button"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Click Me" />
 

2.4ImageView:

mageView控件用于显示图像或图片。以下是一个简单的示例代码:

ImageView imageView = findViewById(R.id.imageView); // 获取ImageView控件实例

imageView.setImageResource(R.drawable.my_image); // 设置图片资源

 

在XML布局文件中,添加一个ImageView控件:

<ImageView
    android:id="@+id/imageView"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:src="@drawable/my_image"
    android:scaleType="centerCrop" />
 

3.Android UI界面交互功能实现方法

3.1按钮点击事件:

按钮点击事件是实现用户交互的基本功能之一。通过为按钮设置点击监听器,可以在用户点击按钮时执行相应的操作。

<Button
    android:id="@+id/myButton"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Click Me"
/>
 

Button myButton = findViewById(R.id.myButton);
myButton.setOnClickListener(new View.OnClickListener() {
    @Override
    public void onClick(View v) {
        // 在这里编写按钮点击事件的处理逻辑
        // 例如,显示一个Toast消息
        Toast.makeText(getApplicationContext(), "按钮被点击了", Toast.LENGTH_SHORT).show();
    }
});
 

3.2列表项点击事件

列表项点击事件用于响应用户对列表中某一项的点击操作。通过为列表设置点击监听器,可以捕获用户点击的位置和数据,并执行相应的操作。

首先,在你的列表项布局文件中添加一个点击事件监听器:

<!-- list_item.xml -->
<LinearLayout
    ...
    android:clickable="true"
    android:onClick="onItemClick">
    ...
</LinearLayout>
 

然后,在你的Activity类中,创建一个具有相同名称的方法来处理点击事件:

// MainActivity.java
public class MainActivity extends AppCompatActivity {
    ...
    
    public void onItemClick(View view) {
        // 处理点击事件逻辑
    }
}
 

3.3滑动操作

创建一个GestureDetector对象,并重写onFling()方法,用于监听滑动操作。

GestureDetector mGestureDetector = new GestureDetector(getApplicationContext(), new GestureDetector.SimpleOnGestureListener() {
  @Override
  public boolean onFling(MotionEvent e1, MotionEvent e2, float velocityX, float velocityY) {
      // 在这里处理滑动操作
      return true;
  }
});
 
View view = findViewById(R.id.my_view);
view.setOnTouchListener(new View.OnTouchListener() {
  @Override
  public boolean onTouch(View v, MotionEvent event) {
      return mGestureDetector.onTouchEvent(event);
  }
});
 

  3.4菜单项

在你的Activity中重写onCreateOptionsMenu()方法,用于创建菜单项。

@Override
public boolean onCreateOptionsMenu(Menu menu) {
    getMenuInflater().inflate(R.menu.menu_main, menu);
    return true;
}
 

在res目录下创建一个menu文件夹,并在其中创建一个menu_main.xml文件用于定义菜单项。例如,创建一个带有两个菜单项的menu_main.xml文件。

<menu xmlns:android="http://schemas.android.com/apk/res/android">
    <item
        android:id="@+id/menu_item1"
        android:title="菜单项1" />
    <item
        android:id="@+id/menu_item2"
        android:title="菜单项2" />
</menu>
 

onOptionsItemSelected()方法中处理菜单项的点击事件。

@Override
public boolean onOptionsItemSelected(MenuItem item) {
    int id = item.getItemId();

    switch (id) {
        case R.id.menu_item1:
            // 处理菜单项1的点击事件
            return true;
        case R.id.menu_item2:
            // 处理菜单项2的点击事件
            return true;
        default:
            return super.onOptionsItemSelected(item);
    }
}
 

 3.5对话框

创建AlertDialog.Builder对象。

AlertDialog.Builder builder = new AlertDialog.Builder(this);
 

设置对话框的标题、消息和按钮等属性。

builder.setTitle("对话框标题");
builder.setMessage("对话框消息");

builder.setPositiveButton("确定", new DialogInterface.OnClickListener() {
    public void onClick(DialogInterface dialog, int which) {
        // 点击确定按钮后的处理逻辑
    }
});

builder.setNegativeButton("取消", new DialogInterface.OnClickListener() {
    public void onClick(DialogInterface dialog, int which) {
        // 点击取消按钮后的处理逻辑
    }
});
 

创建并显示AlertDialog。

AlertDialog dialog = builder.create();
dialog.show();
 

4.学习心得体会

学习布局:掌握安卓的布局方式,如线性布局、相对布局和帧布局等,能够合理地设计和排布界面中的各个控件。学习使用布局属性,如权重、边距和对齐等,能够更好地控制布局效果。

熟悉常用控件:掌握常用的安卓控件,如TextView、Button、EditText、ImageView等,了解它们的使用方法和属性,能够更好地展示界面中的文本、图片和交互元素。

UI界面交互功能:学习如何为界面添加交互功能,如点击事件、滑动事件和长按事件等。可以通过设置监听器来捕捉控件触发的事件,并在事件发生时执行相应的操作。

  • 9
    点赞
  • 11
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值