일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 토스정답
- 톹
- 캐슬
- 자바
- 토스
- 추천인
- 오퀴즈정답
- java
- 오늘의퀴즈
- 캐시슬라이드
- 행운퀴즈정답
- 행퀴
- 캐시워크정답
- 캐웤
- 초성퀴즈정답
- 퀴즈
- 이벤트
- Android
- 안드로이드
- 행운퀴즈
- 캐시워크
- ㄹㅂㅁㅇㅌ
- 정답
- TOSS
- spring게시판
- 비트코인
- 리브메이트
- 초성퀴즈
- 오퀴즈
- 돈버는퀴즈
- Today
- 252,060
- Total
- 18,363,256
Gomdori
[Android] 안드로이드 스튜디오 BottomNavigationView 사용하기 본문
안녕하세요.
안드로이드 BottomNavigationView 사용법에 대한 포스팅입니다.
보통 Fragment 변경 시 많이 사용하는 네비게이션바입니다.
1.Gradle 부분에 Implementation 은 아무것도 안해주셔도 됩니다.
2. Activity
public class MainActivity extends AppCompatActivity{
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView( R.layout.activity_main);
BottomNavigationView bottomNavigationView = findViewById(R.id.navigationView);
bottomNavigationView.setOnNavigationItemSelectedListener(new ItemSelectedListener());
}
class ItemSelectedListener implements BottomNavigationView.OnNavigationItemSelectedListener{
@Override
public boolean onNavigationItemSelected(@NonNull MenuItem menuItem) {
switch(menuItem.getItemId())
{
case R.id.a:
//Item의 Id값에 해당하는 것을 누를 시
break;
case R.id.b:
//Item의 Id값에 해당하는 것을 누를 시
break;
case R.id.c:
//Item의 Id값에 해당하는 것을 누를 시
break;
case R.id.d:
//Item의 Id값에 해당하는 것을 누를 시
break;
case R.id.e:
//Item의 Id값에 해당하는 것을 누를 시
}
return true;
}
}
3. Layout
<?xml version="1.0" encoding="UTF-8"?>
<LinearLayout android:layout_height="match_parent"
android:layout_width="match_parent"
xmlns:tools="http://schemas.android.com/tools"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:weightSum="10">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="9.3"
android:orientation="vertical"
tools:ignore="Suspicious0dp">
<FrameLayout
android:id="@+id/main_Frag"
android:layout_width="match_parent"
android:layout_height="match_parent">
</FrameLayout>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="0.7"
android:layout_gravity="bottom"
android:orientation="horizontal"
tools:ignore="Suspicious0dp">
<com.google.android.material.bottomnavigation.BottomNavigationView
android:id="@+id/navigationView"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toLeftOf="parent"
app:menu="@menu/menu_bottomnavigationview"/>
</LinearLayout>
</LinearLayout>
</LinearLayout>
4. Menu XML 생성( res/menu/menu_bottomnavigationview)
menu_bottomnavigationview.xml
<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">
<item
android:id="@+id/a"
app:showAsAction="always"
android:icon="@drawable/~~~~"
android:title="제목" />
<item
android:id="@+id/b"
app:showAsAction="always"
android:icon="@drawable/~~~~"
android:title="제목" />
<item
android:id="@+id/c"
app:showAsAction="always"
android:icon="@drawable/~~~~"
android:title="제목" />
<item
android:id="@+id/d"
app:showAsAction="always"
android:icon="@drawable/~~~~"
android:title="제목" />
<item
android:id="@+id/e"
app:showAsAction="always"
android:icon="@drawable/~~~~"
android:title="제목" />
</menu>
이렇게 5분도 안걸리고 할 수 있습니다.
정말 쉽죠??
누구나 쉽게 BottomNavigationView 를 만들 수 있습니다.
도움이 되셨다면, 하트버튼 눌러 주시면 감사하겠습니다.
감사합니다.
'코딩(Coding)' 카테고리의 다른 글
[Android] 안드로이드 카카오맵뷰(Kakao MapView) 연동하기(하얀 화면,흰화면) (0) | 2020.06.24 |
---|---|
[Android] 안드로이드 스튜디오 특정 지역에 대한 위도/경도 가져오기(Google Geocoder) (0) | 2020.06.24 |
[Android] GPS 현재 위치 가져오기(Location,Latitude,Longitude) (2) | 2020.03.12 |
[Android/안드로이드] Background(백그라운드) Service Thread 설정 (0) | 2020.03.12 |
[Node js] Error page 에러 페이지 설정해주는 방법 (0) | 2020.03.12 |