如何在安卓應用中找出陣列中的中間元素?


本示例演示如何在 Android 中找到陣列中的中間元素。

步驟 1 − 在 Android Studio 中建立新專案,轉到檔案 ⇒ 新專案,並填寫所有必需資訊以建立新專案。

步驟 2 − 新增以下程式碼到 res/layout/activity_main.xml。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 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:gravity="center"
   android:layout_height="match_parent"
   tools:context=".MainActivity">
   <TextView
      android:id="@+id/text"
      android:textSize="30sp"
      android:layout_width="match_parent"
      android:layout_height="match_parent" />
</LinearLayout>

在以上程式碼中,我們採用一個文字檢視來查詢中間元素。

步驟 3 − 新增以下程式碼到 src/MainActivity.java

package com.example.myapplication;

import android.os.Build;
import android.os.Bundle;
import android.support.annotation.RequiresApi;
import android.support.v7.app.AppCompatActivity;
import android.widget.TextView;

import java.lang.reflect.Array;
import java.util.LinkedList;

public class MainActivity extends AppCompatActivity {
   @RequiresApi(api = Build.VERSION_CODES.P)
   @Override
   protected void onCreate(Bundle savedInstanceState) {
      super.onCreate(savedInstanceState);
      setContentView(R.layout.activity_main);
      int[] array = new int[]{1,2,3,4,5,6,7,8};
      int i;
      i = array.length;
      i = (int)i/2;
      TextView textView = findViewById(R.id.text);
      textView.setText(String.valueOf(array[i]));
   }
}

讓我們嘗試執行你的應用程式。我假設你已經將你的實際 Android 移動裝置連線到你的計算機。要從 Android Studio 執行應用程式,請開啟你的某個專案活動檔案,然後單擊工具欄中的執行  圖示。選擇你的移動裝置作為選項,然後檢查你的移動裝置,它將顯示你的預設螢幕 −

單擊 此處 下載專案程式碼

更新於: 2019-07-30

105 次瀏覽

點燃你的 職業生涯

透過完成課程獲得認證

開始
廣告
© . All rights reserved.