2018-2019-2 20175306實驗四《Android程序設計》實驗報告

2018-2019-2 20175306實驗四《Android程序設計》實驗報告


1、實驗四 Android程序設計-1

1.實驗要求:

Android Stuidio的安裝測試: 參考《Java和Android開發學習指南(第二版)(EPUBIT,Java for Android 2nd)》第二十四章:
(1) 參考http://www.cnblogs.com/rocedu/p/6371315.html#SECANDROID,安裝 Android Stuidio;
(2) 完成Hello World, 要求修改res目錄中的內容,Hello World後要顯示本身的學號,本身學號先後一名同窗的學號,提交代碼運行截圖和碼雲Git連接,截圖沒有學號要扣分;
(3)學習Android Stuidio調試應用程序。html

2.實驗過程:

(1)下載安裝Android Studio步驟請參考:http://www.cnblogs.com/rocedu/p/6824965.html;
(2)配置和啓動模擬器;java

  • 啓動虛擬機:
    android

  • 新建虛擬機:
    git

  • 下載SDK:
    app

  • 下載後繼續操做:
    eclipse

  • 項目的編譯和運行:由於HelloWorld在項目中是自帶的,修改res中的layout中的activity_main.xml的代碼便可。
    修改後的activity_main.xml的代碼:
<?xml version="1.0" encoding="utf-8"?>
<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=".MainActivity">

    
    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginEnd="80dp"
        android:layout_marginRight="80dp"
        android:text="Hello World!20175605 20175306 20175307"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        tools:text="Hello World!20175605 20175306 20175307" />

</android.support.constraint.ConstraintLayout>
  • 運行截圖:

2、實驗四 Android程序設計-2

1.實驗要求:

Activity測試: 參考《Java和Android開發學習指南(第二版)(EPUBIT,Java for Android 2nd)》第二十五章:
(1)構建項目,運行教材相關代碼;
(2)建立 ThirdActivity, 在ThirdActivity中顯示本身的學號,修改代碼讓MainActivity啓動ThirdActivity;
(3)提交代碼運行截圖和碼雲Git連接,截圖要有學號水印,不然會扣分。ide

2.實驗過程:

  • 在activity_main.xml裏新加一段程序,總體代碼以下:
<?xml version="1.0" encoding="utf-8"?>
<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=".MainActivity">

    <Button
        android:id="@+id/button1"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="啓動另外一個activity"
        tools:ignore="MissingConstraints" />
    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginEnd="80dp"
        android:layout_marginRight="80dp"
        android:text="Hello Workd!20175305 20175306 20175307"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        tools:text="Hello Workd!20175305 20175306 20175307" />

</android.support.constraint.ConstraintLayout>
  • 在MainActivity.class中新加代碼建立intent對象,代碼以下:
package com.example.helloworld;

import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;

public class MainActivity extends Activity {
    private Button button1;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        button1 = (Button) findViewById(R.id.button1);
        button1.setOnClickListener(new OnClickListener() {
            @Override
            public void onClick(View v) {
                Intent intent = new Intent(
                        MainActivity.this, SecondActivityDemo.class); // 建立一個Intent對象
                startActivity(intent);
            }

        })
        ;}
}
  • 新建活動SecondActivityDemo
    佈局

  • 建立成功後你會發現你的文檔下多了兩個文件,SecondActivityDemo.java與activity_second_Demo文件!
    SecondActivityDemo.java代碼以下:
package com.example.helloworld;

import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;

public class SecondActivityDemo extends AppCompatActivity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_second_demo);
    }
}
  • activity_second_Demo代碼以下:
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">

    <TextView
        android:id="@+id/textView"
        android:layout_width="172dp"
        android:layout_height="139dp"
        android:text="20175306"
        tools:layout_editor_absoluteX="153dp"
        tools:layout_editor_absoluteY="311dp"
        tools:ignore="MissingConstraints" />
</android.support.constraint.ConstraintLayout>
  • 在app下的manifests下的AndroidMainfest.xml註冊
    學習

  • 代碼以下:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    package="com.example.helloworld" >
    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme"
        tools:ignore="GoogleAppIndexingWarning">

        <activity

            android:name=".MainActivity"

            android:label="@string/app_name" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <activity
            android:name=".SecondActivityDemo"
            android:label="Activity">
        </activity><!--在這裏註冊-->
    </application> </manifest>
  • 代碼運行效果截圖

3、實驗四 Android程序設計-3

1.實驗要求:

UI測試: 參考《Java和Android開發學習指南(第二版)(EPUBIT,Java for Android 2nd)》第二十六章:
(1)構建項目,運行教材相關代碼;
(2)修改代碼讓Toast消息中顯示本身的學號信息;
(3)提交代碼運行截圖和碼雲Git連接,截圖要有學號水印,不然會扣分。測試

2.實驗過程:

  • 對MainActivity.java中的代碼進行修改:
    ①引入方法import android.widget.Toast;
    ②快速調用Toast.makeText(MainActivity.this, "20175229!", Toast.LENGTH_SHORT).show();
    修改後的代碼以下:
package com.example.helloworld;

import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.Toast;

public class MainActivity extends Activity {
    private Button button1;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        Toast.makeText(MainActivity.this, "20175306!", Toast.LENGTH_SHORT).show();
        button1 = (Button) findViewById(R.id.button1);
        button1.setOnClickListener(new OnClickListener() {
            @Override
            public void onClick(View v) {
                Intent intent = new Intent(
                        MainActivity.this, SecondActivityDemo.class); // 建立一個Intent對象
                       startActivity(intent);
            }

        })
    ;}
}
  • 運行截圖:

4、實驗四 Android程序設計-4

1.實驗要求:

佈局測試: 參考《Java和Android開發學習指南(第二版)(EPUBIT,Java for Android 2nd)》第二十七章:
(1)構建項目,運行教材相關代碼;
(2)修改佈局讓P290頁的界面與教材不一樣;
(3)提交代碼運行截圖和碼雲Git連接,截圖要有學號水印,不然會扣分。

2.實驗過程:

  • 此步改代碼較複雜,咱們選擇手動操做將activity_main.xml下的Text轉成Design進行手動操做:

  • 運行截圖:

5、實驗四 Android程序設計-5

1.實驗要求:

事件處理測試: 參考《Java和Android開發學習指南(第二版)(EPUBIT,Java for Android 2nd)》第二十八章:
(1)構建項目,運行教材相關代碼;
(2)提交代碼運行截圖和碼雲Git連接,截圖要有學號水印,不然會扣分。

2.實驗過程:

注:功能描述------在點擊屏幕後,時鐘背景顏色發生改變;

  • 改寫MainActivity下的代碼以下:
package com.example.helloworld;

import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.app.Activity;
import android.graphics.Color;
import android.os.Bundle;
import android.view.Menu;
import android.view.View;
import android.widget.AnalogClock;
import android.app.Activity;
import android.graphics.Color;
import android.os.Bundle;
import android.view.Menu;
import android.view.View;
import android.widget.AnalogClock;

import com.example.helloworld.R;

public class MainActivity extends Activity {
    int counter = 0;
    int[] colors = { Color.BLACK, Color.BLUE, Color.CYAN,
            Color.DKGRAY, Color.GRAY, Color.GREEN, Color.LTGRAY,
            Color.MAGENTA, Color.RED, Color.WHITE, Color.YELLOW };
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
    }
    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it
// is present.
        getMenuInflater().inflate(R.menu.menu_main, menu);
        return true;
    }
    public void changeColor(View view) {
        if (counter == colors.length) {
            counter = 0;
        }
        view.setBackgroundColor(colors[counter++]);
    }
}
  • 改寫activity_main下的代碼以下:
<RelativeLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingBottom="10dp"
    android:paddingLeft="10dp"
    android:paddingRight="10dp"
    android:paddingTop="10dp"
    tools:context=".MainActivity">
    <AnalogClock
        android:id="@+id/analogClock1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentTop="true"
        android:layout_centerHorizontal="true"
        android:layout_marginTop="90dp"
        android:onClick="changeColor"
        />
</RelativeLayout>
  • 運行截圖:

6、遇到的困難及解決方案:

  • 問題一:因爲Android studio對電腦要求比較高,我電腦在運行時老是提示內存不足,出現卡頓及錯誤,因此實驗有一部分是在同窗的電腦上操做完成的。
  • 問題二:我在編譯過程當中出現了不少問題,這是其中一個解決起來比較困難的問題。

  • 解決方案:我在網上查找這個錯誤緣由,而後有的回答是這是系統不穩定致使的,並給出了一種解決方案:
一、首先環境變量中ANDROID_SDK_HOME="F:\android-sdk"  。

二、而後在eclipse安裝目錄修改配置文件:

找到如下文件:eclipse\configuration.settings\org.eclipse.ui.ide.prefs 打開後,在後面補充

改剛剛配置的環境變量。

我補充的是:ANDROID_SDK_Home=F:\\android-sdk (注意斜槓格式)。

三、關鍵就是要在eclipse下添加sdk的環境,須要重啓eclipse。

四、最後你打開eclipse能夠看到 成功  這樣模擬器也能夠打開了

我進行了嘗試,但並無起到預期的效果,後來我也尋找到了問題的緣由。就是咱們Android程序的版本和咱們手機模擬器的版本要保持相同。

  • 問題三:在編譯運行的時候,會碰到R爲紅色的狀況。
  • 解決方案:我在查閱資料後發現這個屬於R丟失問題。這個網上的資料有不少,我參考的是R丟失。

7、碼雲連接

8、實驗感悟:

感受此次實驗難度仍是很大的,設計到的知識不少都是陌生的,學習起來頗有難度。並且Android studio操做也挺難的,遇到了許多問題。同時,對電腦的要求也很高,個人電腦就不能支撐。就此次實驗遇到了不少問題,不過收穫仍是挺大的,並且頗有意思,能夠本身設計Android了!

相關文章
相關標籤/搜索