{"id":1072,"date":"2024-11-14T09:17:54","date_gmt":"2024-11-14T09:17:54","guid":{"rendered":"https:\/\/www.freelifemakers.org\/wordpress\/?p=1072"},"modified":"2024-11-14T09:37:53","modified_gmt":"2024-11-14T09:37:53","slug":"kotlindrawerlayout-3-drawerlayout-menu-header","status":"publish","type":"post","link":"https:\/\/www.freelifemakers.org\/wordpress\/index.php\/2024\/11\/14\/kotlindrawerlayout-3-drawerlayout-menu-header\/","title":{"rendered":"[Kotlin]Drawerlayout &#8211; 3.\uba54\ub274,\uba54\ub274\ud5e4\ub354(Menu,Menu Header)"},"content":{"rendered":"\n<p><strong>1.\/res\/layout\/nav_header.xml<\/strong><\/p>\n\n\n\n<p>-xml design<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"413\" height=\"725\" src=\"https:\/\/www.freelifemakers.org\/wordpress\/wp-content\/uploads\/2024\/11\/nav_header_xml.png\" alt=\"\" class=\"wp-image-1074\" srcset=\"https:\/\/www.freelifemakers.org\/wordpress\/wp-content\/uploads\/2024\/11\/nav_header_xml.png 413w, https:\/\/www.freelifemakers.org\/wordpress\/wp-content\/uploads\/2024\/11\/nav_header_xml-171x300.png 171w\" sizes=\"auto, (max-width: 413px) 100vw, 413px\" \/><\/figure>\n\n\n\n<p>-xml code<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;?xml version=\"1.0\" encoding=\"utf-8\"?&gt;\n&lt;LinearLayout xmlns:android=\"http:\/\/schemas.android.com\/apk\/res\/android\"\n    xmlns:app=\"http:\/\/schemas.android.com\/apk\/res-auto\"\n    xmlns:tools=\"http:\/\/schemas.android.com\/tools\"\n    android:layout_width=\"match_parent\"\n    android:layout_height=\"wrap_content\"\n    android:background=\"?attr\/colorAccent\"\n    android:orientation=\"vertical\"&gt;\n\n    &lt;ImageView\n        android:id=\"@+id\/imageView\"\n        android:layout_width=\"80dp\"\n        android:layout_height=\"80dp\"\n        android:layout_marginLeft=\"10dp\"\n        android:layout_marginTop=\"50dp\"\n        android:layout_marginBottom=\"5dp\"\n        app:srcCompat=\"@drawable\/profile\"\n        tools:srcCompat=\"@drawable\/profile\" \/&gt;\n\n    &lt;TextView\n        android:id=\"@+id\/textView\"\n        android:layout_width=\"wrap_content\"\n        android:layout_height=\"wrap_content\"\n        android:layout_marginLeft=\"10dp\"\n        android:text=\"\uc774\ub984Name\"\n        android:textSize=\"30sp\" \/&gt;\n\n    &lt;TextView\n        android:id=\"@+id\/textView2\"\n        android:layout_width=\"wrap_content\"\n        android:layout_height=\"wrap_content\"\n        android:layout_marginLeft=\"12dp\"\n        android:layout_marginBottom=\"20dp\"\n        android:text=\"\uc124\uba85Explain\"\n        android:textSize=\"20sp\" \/&gt;\n&lt;\/LinearLayout&gt;<\/code><\/pre>\n\n\n\n<p><strong>2.\/res\/menu\/nav_menu.xml<\/strong><\/p>\n\n\n\n<p>-Menu\ub514\ub809\ud1a0\ub9ac\ub294  \uc9c1\uc811 \uc0dd\uc131(Create the Menu directory yourself)<\/p>\n\n\n\n<p>-xml design<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"413\" height=\"724\" src=\"https:\/\/www.freelifemakers.org\/wordpress\/wp-content\/uploads\/2024\/11\/nav_menu_xml.png\" alt=\"\" class=\"wp-image-1075\" srcset=\"https:\/\/www.freelifemakers.org\/wordpress\/wp-content\/uploads\/2024\/11\/nav_menu_xml.png 413w, https:\/\/www.freelifemakers.org\/wordpress\/wp-content\/uploads\/2024\/11\/nav_menu_xml-171x300.png 171w\" sizes=\"auto, (max-width: 413px) 100vw, 413px\" \/><\/figure>\n\n\n\n<p>-xml code<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;?xml version=\"1.0\" encoding=\"utf-8\"?&gt;\n&lt;menu xmlns:android=\"http:\/\/schemas.android.com\/apk\/res\/android\"\n    xmlns:tools=\"http:\/\/schemas.android.com\/tools\"\n    tools:showIn=\"navigition_view\"&gt;\n    &lt;group android:checkableBehavior=\"single\"&gt;\n        &lt;item\n            android:id=\"@+id\/item1\"\n            android:icon=\"@android:drawable\/ic_media_play\"\n            android:title=\"\uccab\ubc88\uc9f8Firtst\"\/&gt;\n        &lt;item\n            android:id=\"@+id\/item2\"\n            android:icon=\"@android:drawable\/ic_menu_gallery\"\n            android:title=\"\ub450\ubc88\uc9f8Second\"\/&gt;\n        &lt;item\n            android:id=\"@+id\/item3\"\n            android:icon=\"@android:drawable\/ic_popup_reminder\"\n            android:title=\"\uc138\ubc88\uc9f8Third\"\/&gt;\n    &lt;\/group&gt;\n&lt;\/menu&gt;<\/code><\/pre>\n\n\n\n<p><strong>3.\uc0ac\uc6a9\ub41c \uc774\ubbf8\uc9c0(Image used)<\/strong><br>Drawable\/profile.png<\/p>\n\n\n\n<div class=\"wp-block-file\"><a id=\"wp-block-file--media-b1fd6814-5c74-4a5a-b608-a0d3b7517860\" href=\"https:\/\/www.freelifemakers.org\/wordpress\/wp-content\/uploads\/2024\/11\/profile.png\">profile<\/a><a href=\"https:\/\/www.freelifemakers.org\/wordpress\/wp-content\/uploads\/2024\/11\/profile.png\" class=\"wp-block-file__button wp-element-button\" download aria-describedby=\"wp-block-file--media-b1fd6814-5c74-4a5a-b608-a0d3b7517860\">Download<\/a><\/div>\n","protected":false},"excerpt":{"rendered":"<p>1.\/res\/layout\/nav_header.xml -xml design -xml code 2.\/res\/menu\/nav_menu.xml -Menu\ub514\ub809\ud1a0\ub9ac\ub294 \uc9c1\uc811 \uc0dd\uc131(Create the Menu directory yourself) -xml design -xml code 3.\uc0ac\uc6a9\ub41c \uc774\ubbf8\uc9c0(Image used)Drawable\/profile.png<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[12,1],"tags":[],"class_list":["post-1072","post","type-post","status-publish","format-standard","hentry","category-kotlin","category-uncategorized","missing-thumbnail"],"_links":{"self":[{"href":"https:\/\/www.freelifemakers.org\/wordpress\/index.php\/wp-json\/wp\/v2\/posts\/1072","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.freelifemakers.org\/wordpress\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.freelifemakers.org\/wordpress\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.freelifemakers.org\/wordpress\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.freelifemakers.org\/wordpress\/index.php\/wp-json\/wp\/v2\/comments?post=1072"}],"version-history":[{"count":6,"href":"https:\/\/www.freelifemakers.org\/wordpress\/index.php\/wp-json\/wp\/v2\/posts\/1072\/revisions"}],"predecessor-version":[{"id":1091,"href":"https:\/\/www.freelifemakers.org\/wordpress\/index.php\/wp-json\/wp\/v2\/posts\/1072\/revisions\/1091"}],"wp:attachment":[{"href":"https:\/\/www.freelifemakers.org\/wordpress\/index.php\/wp-json\/wp\/v2\/media?parent=1072"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.freelifemakers.org\/wordpress\/index.php\/wp-json\/wp\/v2\/categories?post=1072"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.freelifemakers.org\/wordpress\/index.php\/wp-json\/wp\/v2\/tags?post=1072"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}