글 번호: 137 작성자: gihun 작성시간: 2023-11-01 00:59:14.415 조회수: 211

발표 자료


activity_main

<?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"
              android:layout_width="match_parent"
              android:layout_height="match_parent"
              android:orientation="vertical">

    <!-- 전체 활동의 루트 레이아웃입니다. 세로 방향으로 구성되어 있습니다. -->

    <androidx.fragment.app.FragmentTabHost
            android:id="@android:id/tabhost"
            android:layout_width="match_parent"
            android:layout_height="match_parent">
        <!-- 탭을 가진 여러 프래그먼트를 호스팅하는 FragmentTabHost -->

        <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:orientation="vertical">
            <!-- TabWidget과 FrameLayout을 세로로 배열하기 위한 하위 LinearLayout -->

            <!-- TabWidget: 탭을 표시하는 UI 컴포넌트 -->
            <TabWidget
                    android:id="@android:id/tabs"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content" />

            <!-- FrameLayout: 선택된 탭의 내용을 표시하기 위한 컨테이너.
                 선택된 탭에 따라 내용이 변경됩니다. -->
            <FrameLayout
                    android:id="@android:id/tabcontent"
                    android:layout_width="match_parent"
                    android:layout_height="0dp"
                    android:layout_weight="1" />

        </LinearLayout>

    </androidx.fragment.app.FragmentTabHost>
</LinearLayout>

fragment_input.xml

<!-- 세로 방향의 레이아웃 시작. 주로 입력 항목을 포함하고 있습니다. -->
<LinearLayout
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:id="@+id/tabInput"
        android:orientation="vertical">

    <!-- 사용자의 이름을 입력하기 위한 EditText 항목 -->
    <EditText
            android:id="@+id/etName"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:hint="이름"/>

    <!-- 사용자의 키를 입력하기 위한 레이아웃. 'cm' 단위가 포함되어 있습니다. -->
    <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="horizontal"
            android:gravity="center_vertical"
            android:weightSum="1">

        <!-- 키를 입력하기 위한 EditText -->
        <EditText
                android:id="@+id/etHeight"
                android:layout_width="0dp"
                android:layout_weight="0.9"
                android:layout_height="wrap_content"
                android:hint=""/>

        <!-- 'cm' 단위를 나타내기 위한 TextView -->
        <TextView
                android:layout_width="0dp"
                android:layout_weight="0.1"
                android:layout_height="wrap_content"
                android:text="cm"
                android:gravity="center"/>
    </LinearLayout>

    <!-- 사용자의 몸무게를 입력하기 위한 레이아웃. 'kg' 단위가 포함되어 있습니다. -->
    <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="horizontal"
            android:gravity="center_vertical"
            android:weightSum="1">

        <!-- 몸무게를 입력하기 위한 EditText -->
        <EditText
                android:id="@+id/etWeight"
                android:layout_width="0dp"
                android:layout_weight="0.9"
                android:layout_height="wrap_content"
                android:hint="몸무게"/>

        <!-- 'kg' 단위를 나타내기 위한 TextView -->
        <TextView
                android:layout_width="0dp"
                android:layout_weight="0.1"
                android:layout_height="wrap_content"
                android:text="kg"
                android:gravity="center"/>
    </LinearLayout>
</LinearLayout>


fragment_result.xml

<!-- 결과를 표시하기 위한 세로 방향의 레이아웃. 항목들을 화면 중앙에 배치합니다. -->
<LinearLayout
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical"
        android:gravity="center"
        android:id="@+id/tabResult">

    <!-- BMI 결과나 다른 정보를 표시하기 위한 TextView. 화면 중앙에 배치됩니다. -->
    <TextView
            android:id="@+id/tvResult"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center"
            android:text=""
            android:textSize="16sp"/>

</LinearLayout>

MainActivity.java

package com.example.myapplication2;

import android.annotation.SuppressLint;
import android.os.Bundle;
import android.util.Log;
import android.view.Menu;
import android.view.MenuItem;
import android.widget.EditText;
import android.widget.TabHost;
import androidx.appcompat.app.AppCompatActivity;
import androidx.fragment.app.FragmentTabHost;

public class MainActivity extends AppCompatActivity {

    // 탭을 관리하는 FragmentTabHost
    private FragmentTabHost tabHost;

    // 키와 몸무게를 입력받는 EditText 변수
    private EditText etHeight;
    private EditText etWeight;

    @SuppressLint("MissingInflatedId")
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        // 앱의 타이틀 설정
        setTitle("학교 모바일 발표");

        // 탭 호스트를 설정하고 초기화
        tabHost = findViewById(android.R.id.tabhost);
        tabHost.setup(this, getSupportFragmentManager(), android.R.id.tabcontent);

        // '입력' 탭을 추가
        tabHost.addTab(tabHost.newTabSpec("Input").setIndicator("입력"), InputFragment.class, null);
        // '결과' 탭을 추가
        tabHost.addTab(tabHost.newTabSpec("Result").setIndicator("결과"), ResultFragment.class, null);

        // EditText 초기화
        etHeight = findViewById(R.id.etHeight);
        etWeight = findViewById(R.id.etWeight);

        // 탭이 변경될 때의 리스너 설정
        tabHost.setOnTabChangedListener(new TabHost.OnTabChangeListener() {
            @Override
            public void onTabChanged(String tabId) {
                Log.d("MainActivity", "onTabChanged: " + tabId);
                if (tabId.equals("Result")) {
                    // '입력' 프래그먼트를 가져와서 키와 몸무게를 받아옴
                    InputFragment inputFragment = (InputFragment) getSupportFragmentManager().findFragmentByTag("Input");
                    double height = inputFragment.getHeight();
                    double weight = inputFragment.getWeight();
                    Double bmiResult = calcBMI(weight, height);
                    Log.d("MainActivity", "BMI: " + bmiResult);

                    // 보류 중인 Fragment Transaction 실행
                    getSupportFragmentManager().executePendingTransactions();

                    // '결과' 프래그먼트를 가져와서 BMI 결과를 업데이트
                    ResultFragment resultFragment = (ResultFragment) getSupportFragmentManager().findFragmentByTag("Result");
                    if(resultFragment != null) {
                        resultFragment.updateBMI(bmiResult);
                    } else {
                        Log.d("MainActivity", "ResultFragment is still null");
                    }
                }
            }
        });
    }

    // BMI 계산 메서드
    double calcBMI(double weight, double heightInCm) {
        double heightInMeters = heightInCm / 100; // cm를 m로 변환
        return weight / (heightInMeters * heightInMeters);
    }

    // 옵션 메뉴 생성
    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        MenuItem resetItem = menu.add(0, 1, 0, "Reset");
        return true;
    }

    // 옵션 아이템 선택 이벤트 처리
    @Override
    public boolean onOptionsItemSelected(MenuItem item) {
        switch (item.getItemId()) {
            case 1:
                // '입력' 탭을 초기화하고 활성화
                InputFragment inputFragment = (InputFragment) getSupportFragmentManager().findFragmentByTag("Input");
                inputFragment.resetInputs();
                tabHost.setCurrentTabByTag("Input");
                return true;
            default:
                return super.onOptionsItemSelected(item);
        }
    }
}

ResultFragment.java

package com.example.myapplication2;

import android.os.Bundle;
import android.util.Log;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.TextView;
import androidx.fragment.app.Fragment;

import java.util.Locale;

// BMI 결과를 표시하는 프래그먼트
public class ResultFragment extends Fragment {
    TextView tvResult;  // BMI 결과를 표시할 텍스트 뷰

    // 프래그먼트의 뷰를 생성하고 반환합니다.
    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
        View view = inflater.inflate(R.layout.fragment_result, container, false);  // 뷰를 인플레이트합니다.
        tvResult = view.findViewById(R.id.tvResult);  // 텍스트 뷰를 초기화합니다.
        return view;
    }

    // BMI 결과를 업데이트하여 화면에 표시합니다.
    public void updateBMI(double bmi) {
        if (tvResult != null) {  // 텍스트 뷰가 초기화되었는지 확인합니다.
            // 로그를 사용하여 디버그 정보를 출력합니다.
            Log.d("ResultFragment", String.format(Locale.getDefault(), "updateBMI: %.2f", bmi));
            Log.d("ResultFragment", tvResult.toString());

            // 텍스트 뷰에 BMI 결과를 설정합니다.
            tvResult.setText(String.format("BMI 결과: %.2f", bmi));
        }
    }
}

InputFragment.java

package com.example.myapplication2;

import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.EditText;
import androidx.fragment.app.Fragment;

// 사용자 입력을 처리하는 프래그먼트
public class InputFragment extends Fragment {

    // 프래그먼트의 뷰를 생성하고 반환합니다.
    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
        // fragment_input 레이아웃을 인플레이트하여 뷰로 반환합니다.
        return inflater.inflate(R.layout.fragment_input, container, false);
    }

    // 사용자가 입력한 키 값을 반환합니다.
    public double getHeight() {
        View view = getView();  // 현재 뷰를 가져옵니다.
        if (view != null) {  // 뷰가 null이 아닌지 확인합니다.
            EditText etHeight = view.findViewById(R.id.etHeight);  // 키 입력란을 가져옵니다.
            return Double.parseDouble(etHeight.getText().toString());  // 키 값을 double 형으로 변환하여 반환합니다.
        }
        return 0;  // 뷰가 null이면 0을 반환합니다.
    }

    // 사용자가 입력한 몸무게 값을 반환합니다.
    public double getWeight() {
        View view = getView();  // 현재 뷰를 가져옵니다.
        if (view != null) {  // 뷰가 null이 아닌지 확인합니다.
            EditText etWeight = view.findViewById(R.id.etWeight);  // 몸무게 입력란을 가져옵니다.
            return Double.parseDouble(etWeight.getText().toString());  // 몸무게 값을 double 형으로 변환하여 반환합니다.
        }
        return 0;  // 뷰가 null이면 0을 반환합니다.
    }

    // 모든 입력 필드를 초기화합니다.
    public void resetInputs() {
        View view = getView();  // 현재 뷰를 가져옵니다.
        if (view != null) {  // 뷰가 null이 아닌지 확인합니다.
            EditText etName = view.findViewById(R.id.etName);      // 이름 입력란을 가져옵니다.
            EditText etHeight = view.findViewById(R.id.etHeight);  // 키 입력란을 가져옵니다.
            EditText etWeight = view.findViewById(R.id.etWeight);  // 몸무게 입력란을 가져옵니다.

            // 각 입력란을 비웁니다.
            etName.setText("");
            etHeight.setText("");
            etWeight.setText("");
        }
    }
}



댓글 리스트

Created by 송바래

✉ gihun3645@naver.com

🚩경기도, 성남시