{"id":37261,"date":"2024-11-01T09:56:09","date_gmt":"2024-11-01T09:56:09","guid":{"rendered":"http:\/\/atmokpo.com\/w\/?p=37261"},"modified":"2024-11-01T11:35:58","modified_gmt":"2024-11-01T11:35:58","slug":"java-android-app-development-course-expanded-floating-action-button","status":"publish","type":"post","link":"https:\/\/atmokpo.com\/w\/37261\/","title":{"rendered":"Java Android App Development Course, Expanded Floating Action Button"},"content":{"rendered":"<p><body><\/p>\n<p>\n        In Android app development, the user interface (UI) is a very important element.<br \/>\n        To enhance user experience, it is necessary to provide an intuitive and efficient UI.<br \/>\n        In this article, we will take a look at the &#8216;Floating Action Button (FAB)&#8217;.<br \/>\n        In particular, we will explain the extended floating action button in detail and guide you step by step on how to implement it.\n    <\/p>\n<h2>What is a Floating Action Button (FAB)?<\/h2>\n<p>\n        A floating action button is a circular button that floats in a specific area of the screen, usually representing the most important action.<br \/>\n        For example, in a note app, it is a button for &#8216;Create New Note&#8217;, and in a chat app, it is a button for &#8216;Compose Message&#8217;.<br \/>\n        FAB is very intuitive and helps users easily access important actions.\n    <\/p>\n<h2>Need for an Extended Floating Action Button<\/h2>\n<p>\n        While a basic FAB is optimized for a single action, there is a need for an extended version when it is necessary to show several related actions to the user.<br \/>\n        An extended FAB shows multiple additional buttons or options when the user presses the button.<br \/>\n        This allows users to perform a variety of tasks through more options.\n    <\/p>\n<h2>Design of the Extended Floating Action Button<\/h2>\n<p>\n        The design of the extended FAB can be broadly divided into two parts:<br \/>\n        1. Basic FAB<br \/>\n        2. Additional icons to show in the expanded state.<br \/>\n        By combining these two elements well, an intuitive UI can be provided to the user.\n    <\/p>\n<h2>Setting Up the Project in Android Studio<\/h2>\n<p>\n        First, open Android Studio and create a new project.<br \/>\n        Select &#8216;Java&#8217; as the language and choose &#8216;Empty Activity&#8217; to provide the basic template.\n    <\/p>\n<pre>\n        <code> \n        \/\/ build.gradle (Module: app)\n        dependencies {\n            implementation 'com.android.support:design:28.0.0'\n        }\n        <\/code>\n    <\/pre>\n<p>\n        By adding dependencies like the above, support for Material Components is added.<br \/>\n        To use the latest version of libraries, set it up to use Google&#8217;s Maven repository.\n    <\/p>\n<h2>Designing the Layout File<\/h2>\n<p>\n        Open the &#8216;res\/layout\/activity_main.xml&#8217; file and set up the basic layout.<br \/>\n        Below is the XML code that includes the floating action button and additional buttons.\n    <\/p>\n<pre>\n        <code>\n        &lt;RelativeLayout 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=\"match_parent\"\n            tools:context=\".MainActivity\"&gt;\n\n            &lt;com.getkeepsafe.taptargetview.TapTargetView\n                android:id=\"@+id\/tap_target_view\"\n                android:layout_width=\"wrap_content\"\n                android:layout_height=\"wrap_content\"\n                app:tapTarget=\"Create a new note here!\"\n                app:outerCircleColor=\"#f44336\"\n                app:targetCircleColor=\"#ffffff\"\n                app:textColor=\"#000000\"&gt;\n            &lt;\/com.getkeepsafe.taptargetview.TapTargetView&gt;\n\n            &lt;android.support.design.widget.FloatingActionButton\n                android:id=\"@+id\/fab\"\n                android:layout_width=\"wrap_content\"\n                android:layout_height=\"wrap_content\"\n                android:layout_alignParentEnd=\"true\"\n                android:layout_alignParentBottom=\"true\"\n                app:srcCompat=\"@drawable\/ic_add\"&gt;\n            &lt;\/android.support.design.widget.FloatingActionButton&gt;\n\n            &lt;LinearLayout\n                android:id=\"@+id\/expanded_menu\"\n                android:layout_width=\"wrap_content\"\n                android:layout_height=\"wrap_content\"\n                android:orientation=\"vertical\"\n                android:layout_alignParentEnd=\"true\"\n                android:layout_above=\"@id\/fab\"\n                android:visibility=\"gone\"&gt;\n\n                &lt;android.support.design.widget.FloatingActionButton\n                    android:id=\"@+id\/fab_item_1\"\n                    android:layout_width=\"wrap_content\"\n                    android:layout_height=\"wrap_content\"\n                    app:srcCompat=\"@drawable\/ic_item1\"&gt;\n                &lt;\/android.support.design.widget.FloatingActionButton&gt;\n\n                &lt;android.support.design.widget.FloatingActionButton\n                    android:id=\"@+id\/fab_item_2\"\n                    android:layout_width=\"wrap_content\"\n                    android:layout_height=\"wrap_content\"\n                    app:srcCompat=\"@drawable\/ic_item2\"&gt;\n                &lt;\/android.support.design.widget.FloatingActionButton&gt;\n\n                &lt;android.support.design.widget.FloatingActionButton\n                    android:id=\"@+id\/fab_item_3\"\n                    android:layout_width=\"wrap_content\"\n                    android:layout_height=\"wrap_content\"\n                    app:srcCompat=\"@drawable\/ic_item3\"&gt;\n                &lt;\/android.support.design.widget.FloatingActionButton&gt;\n\n            &lt;\/LinearLayout&gt;\n\n        &lt;\/RelativeLayout&gt;\n        <\/code>\n    <\/pre>\n<h2>Implementation of MainActivity.java File<\/h2>\n<p>\n        Open the &#8216;MainActivity.java&#8217; file and add code to handle button click events.<br \/>\n        Implement logic to expand or collapse the additional buttons when the FAB is clicked.\n    <\/p>\n<pre>\n        <code>\n        package com.example.fabexample;\n\n        import android.os.Bundle;\n        import android.support.design.widget.FloatingActionButton;\n        import android.support.v7.app.AppCompatActivity;\n        import android.view.View;\n        import android.widget.LinearLayout;\n\n        public class MainActivity extends AppCompatActivity {\n            private FloatingActionButton fab;\n            private LinearLayout expandedMenu;\n\n            @Override\n            protected void onCreate(Bundle savedInstanceState) {\n                super.onCreate(savedInstanceState);\n                setContentView(R.layout.activity_main);\n\n                fab = findViewById(R.id.fab);\n                expandedMenu = findViewById(R.id.expanded_menu);\n\n                fab.setOnClickListener(new View.OnClickListener() {\n                    @Override\n                    public void onClick(View view) {\n                        if (expandedMenu.getVisibility() == View.GONE) {\n                            expandedMenu.setVisibility(View.VISIBLE);\n                        } else {\n                            expandedMenu.setVisibility(View.GONE);\n                        }\n                    }\n                });\n\n                findViewById(R.id.fab_item_1).setOnClickListener(new View.OnClickListener() {\n                    @Override\n                    public void onClick(View v) {\n                        \/\/ Add action for item 1\n                    }\n                });\n\n                findViewById(R.id.fab_item_2).setOnClickListener(new View.OnClickListener() {\n                    @Override\n                    public void onClick(View v) {\n                        \/\/ Add action for item 2\n                    }\n                });\n\n                findViewById(R.id.fab_item_3).setOnClickListener(new View.OnClickListener() {\n                    @Override\n                    public void onClick(View v) {\n                        \/\/ Add action for item 3\n                    }\n                });\n            }\n        }\n        <\/code>\n    <\/pre>\n<h2>Adding Icons and Design Elements<\/h2>\n<p>\n        Add the icons to be used in the &#8216;res\/drawable&#8217; folder of the project.<br \/>\n        These icons provide clear indications for each action, helping users to easily recognize them.<br \/>\n        Additionally, adjust the button&#8217;s color and size considering user feedback.\n    <\/p>\n<h2>Adding Animation<\/h2>\n<p>\n        To improve the transition effects of the extended FAB, you can add animations.<br \/>\n        Smooth animations when the button expands or collapses can enhance the user experience.\n    <\/p>\n<pre>\n        <code>\n        fab.setOnClickListener(new View.OnClickListener() {\n            @Override\n            public void onClick(View view) {\n                if (expandedMenu.getVisibility() == View.GONE) {\n                    expandedMenu.setVisibility(View.VISIBLE);\n                    expandedMenu.startAnimation(AnimationUtils.loadAnimation(getApplicationContext(), R.anim.slide_down));\n                } else {\n                    expandedMenu.startAnimation(AnimationUtils.loadAnimation(getApplicationContext(), R.anim.slide_up));\n                    expandedMenu.setVisibility(View.GONE);\n                }\n            }\n        });\n        <\/code>\n    <\/pre>\n<h2>Creating Animation XML<\/h2>\n<p>\n        Create slide animation XML files in the &#8216;res\/anim&#8217; folder.\n    <\/p>\n<pre>\n        <code>\n        \/\/ slide_down.xml\n        &lt;translate xmlns:android=\"http:\/\/schemas.android.com\/apk\/res\/android\"\n            android:fromYDelta=-100% \n            android:toYDelta=0\n            android:duration=300 \/&gt;\n\n        \/\/ slide_up.xml\n        &lt;translate xmlns:android=\"http:\/\/schemas.android.com\/apk\/res\/android\"\n            android:fromYDelta=0 \n            android:toYDelta=-100%\n            android:duration=300 \/&gt;\n        <\/code>\n    <\/pre>\n<h2>Testing and Debugging<\/h2>\n<p>\n        After writing the code and ensuring that all elements work perfectly,<br \/>\n        test the app on various devices to check if the UI displays correctly.<br \/>\n        You can test using either an emulator or a real device.\n    <\/p>\n<h2>Conclusion<\/h2>\n<p>\n        In this tutorial, we learned how to improve user experience in Android apps using the extended floating action button.<br \/>\n        The FAB is a simple button, but if implemented correctly, it can provide significant convenience to users.<br \/>\n        Based on what you learned in this tutorial, try adding various features to your app.\n    <\/p>\n<h2>Additional Resources<\/h2>\n<p>\n        &#8211; <a href=\"https:\/\/developer.android.com\/reference\/com\/google\/android\/material\/floatingactionbutton\/FloatingActionButton\">Official Documentation for FloatingActionButton<\/a><br \/>\n        &#8211; <a href=\"https:\/\/developer.android.com\/about\/versions\/material-design\">Material Design Guidelines<\/a>\n<\/p>\n<p><\/body><\/p>\n","protected":false},"excerpt":{"rendered":"<p>In Android app development, the user interface (UI) is a very important element. To enhance user experience, it is necessary to provide an intuitive and efficient UI. In this article, we will take a look at the &#8216;Floating Action Button (FAB)&#8217;. In particular, we will explain the extended floating action button in detail and guide &hellip; <a href=\"https:\/\/atmokpo.com\/w\/37261\/\" class=\"more-link\">\ub354 \ubcf4\uae30<span class=\"screen-reader-text\"> &#8220;Java Android App Development Course, Expanded Floating Action Button&#8221;<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[137],"tags":[],"class_list":["post-37261","post","type-post","status-publish","format-standard","hentry","category-java-android-app-development"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.2 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Java Android App Development Course, Expanded Floating Action Button - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/atmokpo.com\/w\/37261\/\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Java Android App Development Course, Expanded Floating Action Button - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"og:description\" content=\"In Android app development, the user interface (UI) is a very important element. To enhance user experience, it is necessary to provide an intuitive and efficient UI. In this article, we will take a look at the &#8216;Floating Action Button (FAB)&#8217;. In particular, we will explain the extended floating action button in detail and guide &hellip; \ub354 \ubcf4\uae30 &quot;Java Android App Development Course, Expanded Floating Action Button&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/atmokpo.com\/w\/37261\/\" \/>\n<meta property=\"og:site_name\" content=\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"article:published_time\" content=\"2024-11-01T09:56:09+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-01T11:35:58+00:00\" \/>\n<meta name=\"author\" content=\"root\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@bebubo4\" \/>\n<meta name=\"twitter:site\" content=\"@bebubo4\" \/>\n<meta name=\"twitter:label1\" content=\"\uae00\uc4f4\uc774\" \/>\n\t<meta name=\"twitter:data1\" content=\"root\" \/>\n\t<meta name=\"twitter:label2\" content=\"\uc608\uc0c1 \ub418\ub294 \ud310\ub3c5 \uc2dc\uac04\" \/>\n\t<meta name=\"twitter:data2\" content=\"5\ubd84\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/atmokpo.com\/w\/37261\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/37261\/\"},\"author\":{\"name\":\"root\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\"},\"headline\":\"Java Android App Development Course, Expanded Floating Action Button\",\"datePublished\":\"2024-11-01T09:56:09+00:00\",\"dateModified\":\"2024-11-01T11:35:58+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/atmokpo.com\/w\/37261\/\"},\"wordCount\":557,\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"articleSection\":[\"Java Android app development\"],\"inLanguage\":\"ko-KR\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/atmokpo.com\/w\/37261\/\",\"url\":\"https:\/\/atmokpo.com\/w\/37261\/\",\"name\":\"Java Android App Development Course, Expanded Floating Action Button - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#website\"},\"datePublished\":\"2024-11-01T09:56:09+00:00\",\"dateModified\":\"2024-11-01T11:35:58+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/atmokpo.com\/w\/37261\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/atmokpo.com\/w\/37261\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/atmokpo.com\/w\/37261\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\ud648\",\"item\":\"https:\/\/atmokpo.com\/w\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Java Android App Development Course, Expanded Floating Action Button\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/atmokpo.com\/w\/#website\",\"url\":\"https:\/\/atmokpo.com\/w\/\",\"name\":\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/atmokpo.com\/w\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"ko-KR\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\",\"name\":\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"url\":\"https:\/\/atmokpo.com\/w\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ko-KR\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png\",\"contentUrl\":\"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png\",\"width\":400,\"height\":400,\"caption\":\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\"},\"image\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/x.com\/bebubo4\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\",\"name\":\"root\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ko-KR\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g\",\"caption\":\"root\"},\"sameAs\":[\"http:\/\/atmokpo.com\/w\"],\"url\":\"https:\/\/atmokpo.com\/w\/author\/root\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Java Android App Development Course, Expanded Floating Action Button - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/atmokpo.com\/w\/37261\/","og_locale":"ko_KR","og_type":"article","og_title":"Java Android App Development Course, Expanded Floating Action Button - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","og_description":"In Android app development, the user interface (UI) is a very important element. To enhance user experience, it is necessary to provide an intuitive and efficient UI. In this article, we will take a look at the &#8216;Floating Action Button (FAB)&#8217;. In particular, we will explain the extended floating action button in detail and guide &hellip; \ub354 \ubcf4\uae30 \"Java Android App Development Course, Expanded Floating Action Button\"","og_url":"https:\/\/atmokpo.com\/w\/37261\/","og_site_name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","article_published_time":"2024-11-01T09:56:09+00:00","article_modified_time":"2024-11-01T11:35:58+00:00","author":"root","twitter_card":"summary_large_image","twitter_creator":"@bebubo4","twitter_site":"@bebubo4","twitter_misc":{"\uae00\uc4f4\uc774":"root","\uc608\uc0c1 \ub418\ub294 \ud310\ub3c5 \uc2dc\uac04":"5\ubd84"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/atmokpo.com\/w\/37261\/#article","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/37261\/"},"author":{"name":"root","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7"},"headline":"Java Android App Development Course, Expanded Floating Action Button","datePublished":"2024-11-01T09:56:09+00:00","dateModified":"2024-11-01T11:35:58+00:00","mainEntityOfPage":{"@id":"https:\/\/atmokpo.com\/w\/37261\/"},"wordCount":557,"publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"articleSection":["Java Android app development"],"inLanguage":"ko-KR"},{"@type":"WebPage","@id":"https:\/\/atmokpo.com\/w\/37261\/","url":"https:\/\/atmokpo.com\/w\/37261\/","name":"Java Android App Development Course, Expanded Floating Action Button - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/#website"},"datePublished":"2024-11-01T09:56:09+00:00","dateModified":"2024-11-01T11:35:58+00:00","breadcrumb":{"@id":"https:\/\/atmokpo.com\/w\/37261\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/atmokpo.com\/w\/37261\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/atmokpo.com\/w\/37261\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\ud648","item":"https:\/\/atmokpo.com\/w\/en\/"},{"@type":"ListItem","position":2,"name":"Java Android App Development Course, Expanded Floating Action Button"}]},{"@type":"WebSite","@id":"https:\/\/atmokpo.com\/w\/#website","url":"https:\/\/atmokpo.com\/w\/","name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","description":"","publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/atmokpo.com\/w\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"ko-KR"},{"@type":"Organization","@id":"https:\/\/atmokpo.com\/w\/#organization","name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","url":"https:\/\/atmokpo.com\/w\/","logo":{"@type":"ImageObject","inLanguage":"ko-KR","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/","url":"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png","contentUrl":"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png","width":400,"height":400,"caption":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8"},"image":{"@id":"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/x.com\/bebubo4"]},{"@type":"Person","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7","name":"root","image":{"@type":"ImageObject","inLanguage":"ko-KR","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g","caption":"root"},"sameAs":["http:\/\/atmokpo.com\/w"],"url":"https:\/\/atmokpo.com\/w\/author\/root\/"}]}},"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"jetpack-related-posts":[],"_links":{"self":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/37261","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/comments?post=37261"}],"version-history":[{"count":1,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/37261\/revisions"}],"predecessor-version":[{"id":37262,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/37261\/revisions\/37262"}],"wp:attachment":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/media?parent=37261"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/categories?post=37261"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/tags?post=37261"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}