๋ชจ๋ฐ์ผ ํธ๋ํฐ์๋ ๋ค๋ก๊ฐ๊ธฐ, ํ์ผ๋ก๊ฐ๊ธฐ, ์คํ์ค์ธ ์ฑ ๋ชฉ๋ก๋ณด๊ธฐ ๋ฒํผ์ด ์๋ค. ํ์ฌ ์์ฒด ์ฑ ๊ฐ๋ฐ์ค์ ๋ค๋ก๊ฐ๊ธฐ ๋ฒํผ์ ๋๋ฌ "ํ๋ก๊ทธ๋จ์ ์ข ๋ฃํ์๊ฒ ์ต๋๊น?" ์๋ฆผ์ฐฝ์ด ๋ํ๋๋๋ฐ ์ด๋ ์ทจ์๋ฅผ ๋๋ฅด๋ฉด ํ์ผ๋ก ๊ฐ๊ณ Backgroud๋ก๋ ์ดํ๋ฆฌ์ผ์ด์ ์ด ๋์๊ฐ์ผํ๋ค. ์์ฃผ ๊ฐ๋จํ ๊ธฐ๋ฅ์ด์ง๋ง, ๋๋ง์ ์๋๋ก์ด๋ ๊ฒ์ํ์ ๋จ๊ฒจ๋ณด๊ณ ์ ํ๋ค.
ํ ๋ฒํผ ํจ๊ณผ ๋ง๋ค๊ธฐ
1. ๋ฒํผ์ด ํฌํจ๋ Activity
[activity_main.xml] Source
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.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/button_home"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="158dp"
android:layout_marginLeft="158dp"
android:layout_marginTop="35dp"
android:layout_marginEnd="165dp"
android:layout_marginRight="165dp"
android:layout_marginBottom="272dp"
android:text="@string/button_login"
app:backgroundTint="#1D74DF"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>
android:text="@string/button_login"์ string.xml์ ์ ์ํ text "Home"์ด๋ค.
2. ๋ฉ์ธ ํด๋์ค์์ ๋ฒํผ ํด๋ฆญ ์ด๋ฒคํธ๋ฅผ ์ ์ธํ๊ณ ํ ๋ฒํผ ํจ๊ณผ๋ฅผ ๋ง๋ ๋ค.
[MainActivity.class] Source
package com.example.buttoncontrol;
import androidx.appcompat.app.AppCompatActivity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
public class MainActivity extends AppCompatActivity {
private Button button_home;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
button_home = findViewById(R.id.button_home);
button_home.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
// ํธ๋ํฐ๋ง๋ค 'Home'ํค๋ ์กด์ฌํ๋ค.
// 'Home'ํค์ ๊ฐ์ ํจ๊ณผ๋ฅผ ๋ง๋ค์ด๋ณธ๋ค.
Intent intent = new Intent(Intent.ACTION_MAIN);
intent.addCategory(Intent.CATEGORY_HOME);
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(intent);
}
});
}
}
์ฌ๊ธฐ์, Intent๋ฅผ ๊ตฌ์ฑํ๋๋ฐ ์ฌ์ฉํ ์์๋ค์ด ์๋๋ฐ ์์ธํ ๋ด์ฉ์ด ๊ถ๊ธํ์ฌ ์ฐพ์๋ณด์๋ค.
Intent.ACTION_MAIN : ์์ Activity๋ฅผ ์ง์ ํ๊ธฐ ์ํ ์ต์ ์ด๋ค.
Intent.CATEGORY_HOME : ๋ณด์ฌ์ฃผ๊ธฐ ์ํ Activity ํ๋ฉด์ Homeํ๋ฉด์ผ๋ก ํ๋ค.
Intent.FLAG_ACTIVITY_NEW_TASK : ์๋ก์ด Task๋ฅผ ์์ฑํ๊ณ Activity๋ฅผ ์ถ๊ฐํ ๊ฒฝ์ฐ ์ฌ์ฉํ๋ค. ์ฌ์ฉ์ค์ธ Task๋ค์ค ๋์ผํ Activity๋ฅผ ๊ฐ์ง๊ณ ์๋ Task๊ฐ ์๋ค๋ฉด ๋์น๋๋ค.
๊ฒฐ๊ณผ
[Andriod] ์๋๋ก์ด๋ ํ ๋ฒํผ ํจ๊ณผ ๋ง๋ค๊ธฐ
@Junesker