Skip to content
This repository has been archived by the owner on Feb 1, 2024. It is now read-only.

Commit

Permalink
Merge pull request #1446 from 39-chen/master
Browse files Browse the repository at this point in the history
#257 实验报告3
  • Loading branch information
zengsn authored Dec 25, 2020
2 parents 1308503 + 248da34 commit c469bec
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 0 deletions.
Binary file added students/net1814080903339/3.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
39 changes: 39 additions & 0 deletions students/net1814080903339/lab3.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
# 实验三
## 一、实验目标
1. 了解Android应用中各种资源的概念与使用方法;
2. 掌握在Android应用中使用图片等资源的方法。

## 二、实验内容
1. 在界面上显示至少一张图片(按照自己的题目添加);
2. 提交res/drawable及图片使用的代码;
3. 提交res/values, res/layout等其他代码;
4. 将应用运行结果截图,放到实验报告中;
5. 点击图片(或按钮)时,打开另一个Activity。

## 三、实验步骤
1. 在res/drawable目录中放入图片(bg.jpg);
2. 在主界面上添加ImageView组件,通过ImageView组件实现在主界面上展示图片;
3. 在主界面的xml文件上对ImageView组件进行配置;
4. 设计方法实现界面的跳转,然后在按钮上应用该方法。
```java
<ImageView
android:id="@+id/imageView"
android:layout_width="423dp"
android:layout_height="732dp"
android:layout_marginStart="16dp"
android:layout_marginLeft="16dp"
android:layout_marginTop="435dp"
android:src="@drawable/bg"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.785"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/button2"
app:layout_constraintVertical_bias="0.571" />
```

## 四、实验结果
![图片](https://raw.githubusercontent.com/39-chen/android-labs-2020/master/students/net1814080903339/3.jpg)

## 五、实验心得
这次实验的主要任务是在主界面上添加图片,使用具有添加图片功能的组件ImageView来实现在主界面添加图片,并且在主界面的xml文件上对组件ImageView进行配置。

0 comments on commit c469bec

Please sign in to comment.