{"id":37237,"date":"2024-11-01T09:55:58","date_gmt":"2024-11-01T09:55:58","guid":{"rendered":"http:\/\/atmokpo.com\/w\/?p=37237"},"modified":"2024-11-01T11:36:03","modified_gmt":"2024-11-01T11:36:03","slug":"java-android-app-development-course-tab-layout-tab-button-configuration","status":"publish","type":"post","link":"https:\/\/atmokpo.com\/w\/37237\/","title":{"rendered":"Java Android App Development Course, Tab Layout &#8211; Tab Button Configuration"},"content":{"rendered":"<p><body><\/p>\n<p>\n        Hello, everyone! Today, as part of the Android app development course using Java, we will learn in detail how to construct a tab layout. The tab layout helps make the user interface (UI) more intuitive and allows easy switching between various screens. In this tutorial, we will enhance our understanding of the basic structure of the tab layout, its various components, and practical examples using Java code.\n    <\/p>\n<h2>What is a Tab Layout?<\/h2>\n<p>\n        A tab layout is a UI component that allows users to switch between multiple screens or views using tab buttons. Users can easily navigate and access different information by clicking on the tab buttons. The Android tab layout is mainly implemented by combining <code>TabLayout<\/code>, <code>ViewPager<\/code>, and <code>Fragment<\/code>.\n    <\/p>\n<h2>Basic Preparation for Implementing Tab Layout<\/h2>\n<p>\n        To implement a tab layout, you need to create a new project using Android Studio. In this example, we will create a project that supports <strong>Android API 21 or higher<\/strong> as a basic requirement.\n    <\/p>\n<ol>\n<li>Run Android Studio and select &#8220;New Project&#8221;.<\/li>\n<li>Choose &#8220;Empty Activity,&#8221; then enter the project name and package information on the next screen.<\/li>\n<li>Finally, click the &#8220;Finish&#8221; button to create the project.<\/li>\n<\/ol>\n<h2>Gradle Setup<\/h2>\n<p>\n        You need to add the necessary dependencies to the project&#8217;s build.gradle file.<br \/>\n        Add the following code to the <code>build.gradle (Module: app)<\/code> file&#8217;s <code>dependencies<\/code> section.\n    <\/p>\n<pre><code>implementation 'com.google.android.material:material:1.4.0'<\/code><\/pre>\n<h2>Layout File Configuration<\/h2>\n<p>\n        Let\u2019s create the layout file required for configuring the tab layout. Open the <code>res\/layout\/activity_main.xml<\/code> file in your project and modify it as follows.\n    <\/p>\n<pre><code>&lt;?xml version=\"1.0\" encoding=\"utf-8\"?&gt;\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.google.android.material.tabs.TabLayout\n        android:id=\"@+id\/tabLayout\"\n        android:layout_width=\"match_parent\"\n        android:layout_height=\"wrap_content\"\n        android:layout_alignParentTop=\"true\"\/&gt;\n\n    &lt;androidx.viewpager.widget.ViewPager\n        android:id=\"@+id\/viewPager\"\n        android:layout_width=\"match_parent\"\n        android:layout_height=\"match_parent\"\n        android:layout_below=\"@id\/tabLayout\"\/&gt;\n\n&lt;\/RelativeLayout&gt;<\/code><\/pre>\n<h2>Modifying MainActivity.java File<\/h2>\n<p>\n        Open the MainActivity.java file and write the code to set up the tab layout and view pager.<br \/>\n        Paste the code below into MainActivity.java.\n    <\/p>\n<pre><code>import androidx.appcompat.app.AppCompatActivity;\n    import androidx.fragment.app.Fragment;\n    import androidx.fragment.app.FragmentPagerAdapter;\n    import androidx.viewpager.widget.ViewPager;\n    import com.google.android.material.tabs.TabLayout;\n    import android.os.Bundle;\n\n    public class MainActivity extends AppCompatActivity {\n\n        ViewPager viewPager;\n        TabLayout tabLayout;\n\n        @Override\n        protected void onCreate(Bundle savedInstanceState) {\n            super.onCreate(savedInstanceState);\n            setContentView(R.layout.activity_main);\n            viewPager = findViewById(R.id.viewPager);\n            tabLayout = findViewById(R.id.tabLayout);\n\n            setupViewPager(viewPager);\n            tabLayout.setupWithViewPager(viewPager);\n        }\n\n        private void setupViewPager(ViewPager viewPager) {\n            ViewPagerAdapter adapter = new ViewPagerAdapter(getSupportFragmentManager());\n            adapter.addFragment(new FragmentOne(), \"Tab 1\");\n            adapter.addFragment(new FragmentTwo(), \"Tab 2\");\n            adapter.addFragment(new FragmentThree(), \"Tab 3\");\n            viewPager.setAdapter(adapter);\n        }\n    }<\/code><\/pre>\n<h2>Creating Fragments<\/h2>\n<p>\n        Each tab consists of a Fragment. We will create <strong>FragmentOne<\/strong>, <strong>FragmentTwo<\/strong>, and <strong>FragmentThree<\/strong>.<br \/>\n        Refer to the code below to create each Fragment file.\n    <\/p>\n<h3>FragmentOne.java<\/h3>\n<pre><code>import android.os.Bundle;\n    import android.view.LayoutInflater;\n    import android.view.View;\n    import android.view.ViewGroup;\n    import androidx.fragment.app.Fragment;\n\n    public class FragmentOne extends Fragment {\n\n        @Override\n        public View onCreateView(LayoutInflater inflater, ViewGroup container,\n                                 Bundle savedInstanceState) {\n            \/\/ Inflate the layout for this fragment\n            return inflater.inflate(R.layout.fragment_one, container, false);\n        }\n    }<\/code><\/pre>\n<h3>FragmentTwo.java<\/h3>\n<pre><code>import android.os.Bundle;\n    import android.view.LayoutInflater;\n    import android.view.View;\n    import android.view.ViewGroup;\n    import androidx.fragment.app.Fragment;\n\n    public class FragmentTwo extends Fragment {\n\n        @Override\n        public View onCreateView(LayoutInflater inflater, ViewGroup container,\n                                 Bundle savedInstanceState) {\n            \/\/ Inflate the layout for this fragment\n            return inflater.inflate(R.layout.fragment_two, container, false);\n        }\n    }<\/code><\/pre>\n<h3>FragmentThree.java<\/h3>\n<pre><code>import android.os.Bundle;\n    import android.view.LayoutInflater;\n    import android.view.View;\n    import android.view.ViewGroup;\n    import androidx.fragment.app.Fragment;\n\n    public class FragmentThree extends Fragment {\n\n        @Override\n        public View onCreateView(LayoutInflater inflater, ViewGroup container,\n                                 Bundle savedInstanceState) {\n            \/\/ Inflate the layout for this fragment\n            return inflater.inflate(R.layout.fragment_three, container, false);\n        }\n    }<\/code><\/pre>\n<h2>Creating Fragment Layout Files<\/h2>\n<p>\n        Create layout files for each Fragment. In the <code>res\/layout<\/code> folder, create <strong>fragment_one.xml<\/strong>, <strong>fragment_two.xml<\/strong>, and <strong>fragment_three.xml<\/strong> files, and add the following content to each.\n    <\/p>\n<h3>fragment_one.xml<\/h3>\n<pre><code>&lt;?xml version=\"1.0\" encoding=\"utf-8\"?&gt;\n&lt;RelativeLayout xmlns:android=\"http:\/\/schemas.android.com\/apk\/res\/android\"\n    android:layout_width=\"match_parent\"\n    android:layout_height=\"match_parent\"&gt;\n\n    &lt;TextView\n        android:layout_width=\"wrap_content\"\n        android:layout_height=\"wrap_content\"\n        android:text=\"Fragment 1\"\n        android:layout_centerInParent=\"true\"\/&gt;\n\n&lt;\/RelativeLayout&gt;<\/code><\/pre>\n<h3>fragment_two.xml<\/h3>\n<pre><code>&lt;?xml version=\"1.0\" encoding=\"utf-8\"?&gt;\n&lt;RelativeLayout xmlns:android=\"http:\/\/schemas.android.com\/apk\/res\/android\"\n    android:layout_width=\"match_parent\"\n    android:layout_height=\"match_parent\"&gt;\n\n    &lt;TextView\n        android:layout_width=\"wrap_content\"\n        android:layout_height=\"wrap_content\"\n        android:text=\"Fragment 2\"\n        android:layout_centerInParent=\"true\"\/&gt;\n\n&lt;\/RelativeLayout&gt;<\/code><\/pre>\n<h3>fragment_three.xml<\/h3>\n<pre><code>&lt;?xml version=\"1.0\" encoding=\"utf-8\"?&gt;\n&lt;RelativeLayout xmlns:android=\"http:\/\/schemas.android.com\/apk\/res\/android\"\n    android:layout_width=\"match_parent\"\n    android:layout_height=\"match_parent\"&gt;\n\n    &lt;TextView\n        android:layout_width=\"wrap_content\"\n        android:layout_height=\"wrap_content\"\n        android:text=\"Fragment 3\"\n        android:layout_centerInParent=\"true\"\/&gt;\n\n&lt;\/RelativeLayout&gt;<\/code><\/pre>\n<h2>Creating ViewPagerAdapter Class<\/h2>\n<p>\n        Create an adapter class that connects the ViewPager and the Fragments. Create a class named <strong>ViewPagerAdapter<\/strong> and write the following code.\n    <\/p>\n<pre><code>import androidx.annotation.NonNull;\n    import androidx.fragment.app.Fragment;\n    import androidx.fragment.app.FragmentManager;\n    import androidx.fragment.app.FragmentPagerAdapter;\n\n    import java.util.ArrayList;\n    import java.util.List;\n\n    public class ViewPagerAdapter extends FragmentPagerAdapter {\n\n        private final List&lt;Fragment&gt; fragmentList = new ArrayList&lt;&gt;();\n        private final List&lt;String&gt; fragmentTitleList = new ArrayList&lt;&gt;();\n\n        public ViewPagerAdapter(@NonNull FragmentManager fm) {\n            super(fm);\n        }\n\n        @NonNull\n        @Override\n        public Fragment getItem(int position) {\n            return fragmentList.get(position);\n        }\n\n        @Override\n        public int getCount() {\n            return fragmentList.size();\n        }\n\n        public void addFragment(Fragment fragment, String title) {\n            fragmentList.add(fragment);\n            fragmentTitleList.add(title);\n        }\n\n        @Override\n        public CharSequence getPageTitle(int position) {\n            return fragmentTitleList.get(position);\n        }\n    }<\/code><\/pre>\n<h2>Run the App and Check Results<\/h2>\n<p>\n        Once all the code is prepared, run the app in Android Studio.<br \/>\n        When testing the app on an emulator or actual device, you will see three tab buttons, and clicking on each tab will display the corresponding Fragment.\n    <\/p>\n<h2>Conclusion<\/h2>\n<p>\n        So far, we have learned how to configure a tab layout in the Android app development course using Java.<br \/>\n        Through this course, you have learned how to implement the tab layout, which is commonly used in Android UI design.<br \/>\n        With this foundational knowledge, you can add more features to your projects and create apps that provide a better user experience!\n    <\/p>\n<p>\n        If you have any questions or further inquiries, please leave a comment. I will continue to prepare many useful Android development courses in the future.<br \/>\n        Thank you!\n    <\/p>\n<p><\/body><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Hello, everyone! Today, as part of the Android app development course using Java, we will learn in detail how to construct a tab layout. The tab layout helps make the user interface (UI) more intuitive and allows easy switching between various screens. In this tutorial, we will enhance our understanding of the basic structure of &hellip; <a href=\"https:\/\/atmokpo.com\/w\/37237\/\" class=\"more-link\">\ub354 \ubcf4\uae30<span class=\"screen-reader-text\"> &#8220;Java Android App Development Course, Tab Layout &#8211; Tab Button Configuration&#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-37237","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, Tab Layout - Tab Button Configuration - \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\/37237\/\" \/>\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, Tab Layout - Tab Button Configuration - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"og:description\" content=\"Hello, everyone! Today, as part of the Android app development course using Java, we will learn in detail how to construct a tab layout. The tab layout helps make the user interface (UI) more intuitive and allows easy switching between various screens. In this tutorial, we will enhance our understanding of the basic structure of &hellip; \ub354 \ubcf4\uae30 &quot;Java Android App Development Course, Tab Layout &#8211; Tab Button Configuration&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/atmokpo.com\/w\/37237\/\" \/>\n<meta property=\"og:site_name\" content=\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"article:published_time\" content=\"2024-11-01T09:55:58+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-01T11:36:03+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=\"6\ubd84\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/atmokpo.com\/w\/37237\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/37237\/\"},\"author\":{\"name\":\"root\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\"},\"headline\":\"Java Android App Development Course, Tab Layout &#8211; Tab Button Configuration\",\"datePublished\":\"2024-11-01T09:55:58+00:00\",\"dateModified\":\"2024-11-01T11:36:03+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/atmokpo.com\/w\/37237\/\"},\"wordCount\":505,\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"articleSection\":[\"Java Android app development\"],\"inLanguage\":\"ko-KR\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/atmokpo.com\/w\/37237\/\",\"url\":\"https:\/\/atmokpo.com\/w\/37237\/\",\"name\":\"Java Android App Development Course, Tab Layout - Tab Button Configuration - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#website\"},\"datePublished\":\"2024-11-01T09:55:58+00:00\",\"dateModified\":\"2024-11-01T11:36:03+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/atmokpo.com\/w\/37237\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/atmokpo.com\/w\/37237\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/atmokpo.com\/w\/37237\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\ud648\",\"item\":\"https:\/\/atmokpo.com\/w\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Java Android App Development Course, Tab Layout &#8211; Tab Button Configuration\"}]},{\"@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, Tab Layout - Tab Button Configuration - \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\/37237\/","og_locale":"ko_KR","og_type":"article","og_title":"Java Android App Development Course, Tab Layout - Tab Button Configuration - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","og_description":"Hello, everyone! Today, as part of the Android app development course using Java, we will learn in detail how to construct a tab layout. The tab layout helps make the user interface (UI) more intuitive and allows easy switching between various screens. In this tutorial, we will enhance our understanding of the basic structure of &hellip; \ub354 \ubcf4\uae30 \"Java Android App Development Course, Tab Layout &#8211; Tab Button Configuration\"","og_url":"https:\/\/atmokpo.com\/w\/37237\/","og_site_name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","article_published_time":"2024-11-01T09:55:58+00:00","article_modified_time":"2024-11-01T11:36:03+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":"6\ubd84"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/atmokpo.com\/w\/37237\/#article","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/37237\/"},"author":{"name":"root","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7"},"headline":"Java Android App Development Course, Tab Layout &#8211; Tab Button Configuration","datePublished":"2024-11-01T09:55:58+00:00","dateModified":"2024-11-01T11:36:03+00:00","mainEntityOfPage":{"@id":"https:\/\/atmokpo.com\/w\/37237\/"},"wordCount":505,"publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"articleSection":["Java Android app development"],"inLanguage":"ko-KR"},{"@type":"WebPage","@id":"https:\/\/atmokpo.com\/w\/37237\/","url":"https:\/\/atmokpo.com\/w\/37237\/","name":"Java Android App Development Course, Tab Layout - Tab Button Configuration - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/#website"},"datePublished":"2024-11-01T09:55:58+00:00","dateModified":"2024-11-01T11:36:03+00:00","breadcrumb":{"@id":"https:\/\/atmokpo.com\/w\/37237\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/atmokpo.com\/w\/37237\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/atmokpo.com\/w\/37237\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\ud648","item":"https:\/\/atmokpo.com\/w\/en\/"},{"@type":"ListItem","position":2,"name":"Java Android App Development Course, Tab Layout &#8211; Tab Button Configuration"}]},{"@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\/37237","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=37237"}],"version-history":[{"count":1,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/37237\/revisions"}],"predecessor-version":[{"id":37238,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/37237\/revisions\/37238"}],"wp:attachment":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/media?parent=37237"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/categories?post=37237"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/tags?post=37237"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}