20155220 实验四 Android开发基础

20155220 实验四 Android开发基础

实验内容

(一)Android Stuidio的安装测试: 参考《Java和Android开发学习指南(第二版)(EPUBIT,Java for Android 2nd)》第二十四章:

  • 安装 Android Stuidio

  • 完成Hello World, 要求修改res目录中的内容,Hello World后要显示自己的学号,提交代码运行截图和码云Git链接,截图没有学号要扣分

  • 学习Android Stuidio调试应用程序

  • 运行截图为:

  • 实验使用的xml文件为

android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  
  xmlns:app="http://schemas.android.com/apk/res-auto"
 
   xmlns:tools="http://schemas.android.com/tools"
   
 android:layout_width="match_parent"
    
android:layout_height="match_parent"
 
   tools:context="com.example.ljq.helloworld.MainActivity">
 
  <TextView
       
 android:layout_width="wrap_content"
    
    android:layout_height="wrap_content"
       
 android:text="Hello World!20155220 "
  
      app:layout_constraintBottom_toBottomOf="parent"
   
     app:layout_constraintLeft_toLeftOf="parent"
      
  app:layout_constraintRight_toRightOf="parent"
      
  app:layout_constraintTop_toTopOf="parent"
       
 app:layout_constraintVertical_bias="0.050000012"
   
     app:layout_constraintHorizontal_bias="0.5" />

</android.support.constraint.ConstraintLayout>

(二)Activity测试: 参考《Java和Android开发学习指南(第二版)(EPUBIT,Java for Android 2nd)》第二十五章:

  • 构建项目,运行教材相关代码

  • 创建 ThirdActivity, 在ThirdActivity中显示自己的学号,修改代码让MainActivity启动ThirdActivity

  • 提交代码运行截图和码云Git链接,截图要有学号水印,否则会扣分

  • ThirdActivity的代码为:

package com.example.ljq.myapplication;
import android.content.Intent;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.Menu;
import android.widget.TextView;
public class ThirdActivity extends AppCompatActivity {
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_third);
        Intent intent = getIntent();
        String message = intent.getStringExtra("message");
        ((TextView) findViewById(R.id.textView1)).setText(message);
    }
    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        getMenuInflater().inflate(R.menu.menu_third, menu);
        return true;
    }
}

(三)UI测试: 参考《Java和Android开发学习指南(第二版)(EPUBIT,Java for Android 2nd)》第二十六章:

  • 构建项目,运行教材相关代码
  • 修改代码让Toast消息中显示自己的学号信息
  • 提交代码运行截图和码云Git链接,截图要有学号水印,否则会扣分
  • 运行截图为:
  • 码云链接

(四)布局测试: 参考《Java和Android开发学习指南(第二版)(EPUBIT,Java for Android 2nd)》第二十七章:

  • 构建项目,运行教材相关代码

  • 修改布局让P290页的界面与教材不同

  • 提交代码运行截图和码云Git链接,截图要有学号水印,否则会扣分

  • 运行截图为:

  • 码云链接

(五)事件处理测试: 参考《Java和Android开发学习指南(第二版)(EPUBIT,Java for Android 2nd)》第二十八章:

  • 构建项目,运行教材相关代码
  • 提交代码运行截图和码云Git链接,截图要有学号水印,否则会扣分
  • 运行截图为:
  • 码云链接
posted on 2017-05-21 09:58  20155220吴思其  阅读(159)  评论(0编辑  收藏  举报