๋ฐ์ํ
Notice
Recent Posts
Recent Comments
Link
์ผ | ์ | ํ | ์ | ๋ชฉ | ๊ธ | ํ |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- Matplotlib ๊ธฐ์ด
- ํ์ด์ฌ๊ณต๋ถ
- ์๋ฐ์คํฌ๋ฆฝํธ ๊ณต๋ถ
- ์๋ฐ๊ณต๋ถ
- Android
- java
- ๋ฐ์ดํฐ๋ฒ ์ด์ค
- ์คํธ๋ฆผ๋ฆฟ ๊ธฐ๋ณธ
- serverless
- MySQL
- Streamlit๊ธฐ๋ณธ
- JavaScript
- ์๋ฐ๊ธฐ์ด
- ์๋๋ก์ด๋ ์คํ๋์ค
- streamlit
- ์๋ฐํ๋ก๊ทธ๋๋ฐ
- ์น๋์๋ณด๋ ์ ์
- ํ์ด์ฌ
- ์๋ฐ์ด๋ณด
- db
- ์คํธ๋ฆผ๋ฆฟ
- Streamlit๊ธฐ์ด
- Pandas
- ์๋ฐ์คํฌ๋ฆฝํธ
- ํ๋ค์ค
- ํ๋ค์ค๊ณต๋ถ
- ์๋ฐ
- ์น๋์๋ณด๋ ๊ธฐ์ด
- RESTful API
- ์๋๋ก์ด๋ ์ฑ ๊ฐ๋ฐ
Archives
- Today
- Total
ruriruriya
[Android] ์๋๋ก์ด๋ - Floating Action Button ์ฌ์ฉํ๋ ๋ฐฉ๋ฒ ๋ณธ๋ฌธ
๐คAndroid/Java
[Android] ์๋๋ก์ด๋ - Floating Action Button ์ฌ์ฉํ๋ ๋ฐฉ๋ฒ
๋ฃจ๋ฆฌ์ผใ 2024. 1. 2. 15:20๋ฐ์ํ
Floating Action Button (FAB)๋ ์๋๋ก์ด๋ ์ฑ์ ์ฌ์ฉ์ ์ธํฐํ์ด์ค(UI) ์์ ์ค ํ๋๋ก,
ํ๋ฉด์์ ๋ ์๋ ์ํ์ ๋ฒํผ์ ๋งํ๋ค.
์ผ๋ฐ์ ์ผ๋ก ์ฑ์ ์ฃผ์ ์์
์ด๋ ๊ฐ์ฅ ์ค์ํ ๋์์ ๊ฐ์กฐํ๊ธฐ ์ํด ์ฌ์ฉ๋๋ค.
1. XML ๋ ์ด์์์์ FAB ์ถ๊ฐ
activity_main.xml ํ์ผ์ ์ด๊ณ FAB๋ฅผ ์ถ๊ฐํ๋ค.
<com.google.android.material.floatingactionbutton.FloatingActionButton
android:id="@+id/fabAdd"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginEnd="11dp"
android:layout_marginBottom="12dp"
android:clickable="true"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:srcCompat="@drawable/baseline_add_circle_24" />
2. MainActivity์์ FAB ์ค์
์กํฐ๋นํฐ ํด๋์ค์์ FAB๋ฅผ ์ฌ์ฉํ๋ ค๋ฉด
ํด๋น FAB๋ฅผ ์ฐธ์กฐํ๊ณ ํด๋ฆญ ์ด๋ฒคํธ๋ฅผ ์ฒ๋ฆฌํ๋ ๋ฑ์ ์์
์ ํ๋ค.
public class MainActivity extends AppCompatActivity {
FloatingActionButton fabAdd;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
fabAdd = findViewById(R.id.fabAdd);
fabAdd.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
// ํด๋ฆญ์ ํ๊ณ ์ถ์ ์ก์
...
}
});
}
}
๋ฐ์ํ