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
- 코틀린
- 안드로이드 네비게이션 메뉴
- 안드로이드 기초
- android studio 앱 만드는 법
- 안드로이드 튜토리얼
- 안드로이드 서비스
- Android
- 홍드로이드 강의
- android tutorial
- 코딩
- Android Java
- java
- 홍드로이드
- IOS
- 자바
- 앱 만들기
- 플러터
- 안드로이드
- 안드로이드 코딩 기초
- 자바 튜토리얼
- 안드로이드 예제
- hongdroid
- Android Studio
- 안드로이드 스튜디오
- 개발자
- flutter
- android example
- 앱 만드는 법
- 안드로이드 앱 만들기
- 개발강의
Archives
- Today
- Total
홍드로이드의 야매코딩
#10 안드로이드 스튜디오 네비게이션 메뉴 (Navigation Menu Custom) 예제 [ 홍드로이드 ] 본문
[activity_main.xml]
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | <?xml version="1.0" encoding="utf-8"?> <android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" xmlns:app="http://schemas.android.com/apk/res-auto" android:id="@+id/drawer_layout" android:layout_width="match_parent" android:layout_height="match_parent" tools:context=".MainActivity"> <LinearLayout android:layout_width="match_parent" android:layout_height="match_parent"> <Button android:id="@+id/btn_open" android:layout_width="match_parent" android:layout_height="wrap_content" android:text="열려라 참깨"/> </LinearLayout> <include layout="@layout/activity_drawer" /> </android.support.v4.widget.DrawerLayout> | cs |
[activity_drawer.xml]
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 31 32 33 34 35 36 37 38 39 40 | <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="240dp" android:layout_height="match_parent" android:layout_gravity="start" android:background="#a8a7ff" android:id="@+id/drawer" android:orientation="vertical"> <Button android:id="@+id/btn_close" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_margin="10dp" android:text="메뉴닫기"/> <TextView android:layout_width="match_parent" android:layout_height="wrap_content" android:gravity="center" android:text="홍드로이드메뉴"/> <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_margin="10dp" android:background="#223ffc" android:orientation="vertical"> <TextView android:layout_width="match_parent" android:layout_height="wrap_content" android:gravity="center" android:text="테스트메뉴"/> </LinearLayout> </LinearLayout> | cs |
[MainActivity.java]
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 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 | package com.example.customnaviexample; import android.support.annotation.NonNull; import android.support.v4.widget.DrawerLayout; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.view.MotionEvent; import android.view.View; import android.widget.Button; public class MainActivity extends AppCompatActivity { private DrawerLayout drawerLayout; private View drawerView; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); drawerLayout = (DrawerLayout)findViewById(R.id.drawer_layout); drawerView = (View)findViewById(R.id.drawer); Button btn_open = (Button)findViewById(R.id.btn_open); btn_open.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { drawerLayout.openDrawer(drawerView); } }); Button btn_close = (Button)findViewById(R.id.btn_close); btn_close.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { drawerLayout.closeDrawers(); } }); drawerLayout.setDrawerListener(listener); drawerView.setOnTouchListener(new View.OnTouchListener() { @Override public boolean onTouch(View v, MotionEvent event) { return true; } }); } DrawerLayout.DrawerListener listener = new DrawerLayout.DrawerListener() { @Override public void onDrawerSlide(@NonNull View drawerView, float slideOffset) { } @Override public void onDrawerOpened(@NonNull View drawerView) { } @Override public void onDrawerClosed(@NonNull View drawerView) { } @Override public void onDrawerStateChanged(int newState) { } }; } | cs |
'Android Java' 카테고리의 다른 글
#12 안드로이드 스튜디오 리사이클러뷰 (Recycler View) 예제 [ 홍드로이드 ] (2) | 2019.05.21 |
---|---|
#11 안드로이드 스튜디오 카메라 (Camera) 예제 [ 홍드로이드 ] (12) | 2019.05.21 |
#9 안드로이드 스튜디오 웹뷰 (WebView) 예제 [ 홍드로이드 ] (3) | 2019.05.21 |
#8 안드로이드 스튜디오 데이터 저장 ( Shared Preferences ) 예제 [ 홍드로이드 ] (0) | 2019.05.21 |
#7 안드로이드 스튜디오 네비게이션 메뉴 ( Navigation Menu ) 예제 [ 홍드로이드 ] (0) | 2019.05.21 |
Comments