{"id":37191,"date":"2024-11-01T09:55:37","date_gmt":"2024-11-01T09:55:37","guid":{"rendered":"http:\/\/atmokpo.com\/w\/?p=37191"},"modified":"2024-11-01T11:36:17","modified_gmt":"2024-11-01T11:36:17","slug":"java-android-app-development-course-using-the-app-bar","status":"publish","type":"post","link":"https:\/\/atmokpo.com\/w\/37191\/","title":{"rendered":"Java Android App Development Course, Using the App Bar"},"content":{"rendered":"<p><body><\/p>\n<h2>1. What is AppBar?<\/h2>\n<p>\n        AppBar is an essential component that makes up the basic user interface in Android apps. It is typically positioned at the top of the screen, displaying the title of the current screen and providing users with tools to access the app&#8217;s main features.<br \/>\n        The AppBar in Android is implemented through the <code>Toolbar<\/code> class. It can include various buttons, logos, menu icons, and more, playing a significant role in enhancing user experience.\n    <\/p>\n<h2>2. Basic Components of AppBar<\/h2>\n<p>\n        AppBar consists of several components:\n    <\/p>\n<ul>\n<li><strong>Title:<\/strong> Displays the title of the current screen.<\/li>\n<li><strong>Navigation Icon:<\/strong> An icon that helps users return to the previous screen.<\/li>\n<li><strong>Menu Items:<\/strong> Icons that provide additional features.<\/li>\n<li><strong>Action Buttons:<\/strong> Buttons that provide frequently used functionalities.<\/li>\n<\/ul>\n<h2>3. Implementing AppBar<\/h2>\n<p>\n        This section explains how to actually implement an AppBar. First, create a new project in Android Studio and set up a basic layout for the AppBar.\n    <\/p>\n<h3>3.1 Create a New Android Project<\/h3>\n<p>\n        1. Open Android Studio and select &#8220;New Project&#8221;.<br \/>\n        2. Select &#8220;Empty Activity&#8221; and enter the project name.<br \/>\n        3. Choose Java as the language and click &#8220;Finish&#8221;.\n    <\/p>\n<h3>3.2 Modify build.gradle File<\/h3>\n<p>\n        There is no need to add `Toolbar` in the `build.gradle` file to use AppBar. The AndroidX library is included by default, so just ensure that the required SDK version is checked.\n    <\/p>\n<h3>3.3 Modify activity_main.xml<\/h3>\n<p>\n        Next, add the AppBar in the `activity_main.xml` file. Refer to the code below:\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;androidx.appcompat.widget.Toolbar\n        android:id=\"@+id\/toolbar\"\n        android:layout_width=\"match_parent\"\n        android:layout_height=\"?attr\/actionBarSize\"\n        android:background=\"?attr\/colorPrimary\"\n        app:popupTheme=\"@style\/ThemeOverlay.AppCompat.Light\" \/&gt;\n\n    &lt;TextView\n        android:id=\"@+id\/textView\"\n        android:layout_width=\"wrap_content\"\n        android:layout_height=\"wrap_content\"\n        android:text=\"Hello, World!\"\n        android:layout_below=\"@id\/toolbar\"\n        android:layout_centerInParent=\"true\" \/&gt;\n\n&lt;\/RelativeLayout&gt;<\/code><\/pre>\n<h3>3.4 Write Code in MainActivity.java<\/h3>\n<p>\n        Next, add the code related to the AppBar in the <code>MainActivity.java<\/code> file. Refer to the example below:\n    <\/p>\n<pre><code>package com.example.myapplication;\n\nimport androidx.appcompat.app.AppCompatActivity;\nimport android.os.Bundle;\nimport androidx.appcompat.widget.Toolbar;\n\npublic class MainActivity extends AppCompatActivity {\n\n    @Override\n    protected void onCreate(Bundle savedInstanceState) {\n        super.onCreate(savedInstanceState);\n        setContentView(R.layout.activity_main);\n\n        \/\/ Setting up the toolbar\n        Toolbar toolbar = findViewById(R.id.toolbar);\n        setSupportActionBar(toolbar);\n        getSupportActionBar().setTitle(\"AppBar Example\");\n    }\n}<\/code><\/pre>\n<h2>4. Adding Menu Items<\/h2>\n<p>\n        The next step is to add menu items to the AppBar. First, create a menu resource file.\n    <\/p>\n<h3>4.1 Create Menu Resource File<\/h3>\n<p>\n        1. Right-click the <code>res\/menu<\/code> folder and select &#8220;New&#8221; &gt; &#8220;Menu Resource File&#8221;.<br \/>\n        2. Name the file `menu_main.xml` and click &#8220;OK&#8221;.\n    <\/p>\n<h3>4.2 Modify menu_main.xml File<\/h3>\n<pre><code>&lt;?xml version=\"1.0\" encoding=\"utf-8\"?&gt;\n&lt;menu xmlns:android=\"http:\/\/schemas.android.com\/apk\/res\/android\"&gt;\n\n    &lt;item\n        android:id=\"@+id\/action_settings\"\n        android:title=\"Settings\"\n        android:orderInCategory=\"100\"\n        android:showAsAction=\"never\" \/&gt;\n\n&lt;\/menu&gt;<\/code><\/pre>\n<h3>4.3 Add Menu to MainActivity.java<\/h3>\n<p>\n        Override the `onCreateOptionsMenu` method to add the newly created menu to the AppBar.\n    <\/p>\n<pre><code>import android.view.Menu;\nimport android.view.MenuItem;\n\n\/\/ Add to MainActivity.java\n@Override\npublic boolean onCreateOptionsMenu(Menu menu) {\n    getMenuInflater().inflate(R.menu.menu_main, menu);\n    return true;\n}\n\n@Override\npublic boolean onOptionsItemSelected(MenuItem item) {\n    int id = item.getItemId();\n\n    if (id == R.id.action_settings) {\n        \/\/ Action when settings item is clicked\n        return true;\n    }\n\n    return super.onOptionsItemSelected(item);\n}<\/code><\/pre>\n<h2>5. Adding Icons to AppBar<\/h2>\n<p>\n        Next, we will add icons to the AppBar so that users can access more features. This section explains how to add and configure icons.\n    <\/p>\n<h3>5.1 Add Icon to drawable Folder<\/h3>\n<p>\n        Add the icon image to the <code>res\/drawable<\/code> folder.<br \/>\n        For example, create a file named `ic_settings.xml` and set it up as follows:\n    <\/p>\n<pre><code>&lt;?xml version=\"1.0\" encoding=\"utf-8\"?&gt;\n&lt;vector xmlns:android=\"http:\/\/schemas.android.com\/apk\/res\/android\"\n    android:width=\"24dp\"\n    android:height=\"24dp\"\n    android:viewportWidth=\"24\"\n    android:viewportHeight=\"24\"&gt;\n    &lt;path\n        android:fillColor=\"#FF000000\"\n        android:pathData=\"M12,16.5c-1.33,0 -2.48,0.51 -3.41,1.41l-1.59,-1.59c-2.5,2.5 -2.5,6.57 0,9.08s6.57,2.5 9.08,0s2.5,-6.57 0,-9.08l-1.59,1.59C14.48,17.01,13.33,16.5,12,16.5z M12,8.5c1.33,0 2.48,-0.51 3.41,-1.41l1.59,1.59c2.5,-2.5 2.5,-6.57 0,-9.08s-6.57,-2.5 -9.08,0 -2.5,6.57 0,9.08l1.59,-1.59C9.52,8.99,10.67,8.5,12,8.5z\"\/&gt;\n&lt;\/vector&gt;<\/code><\/pre>\n<h3>5.2 Add Icon to Menu Item<\/h3>\n<pre><code>&lt;item\n    android:id=\"@+id\/action_settings\"\n    android:title=\"Settings\"\n    android:icon=\"@drawable\/ic_settings\"\n    android:orderInCategory=\"100\"\n    android:showAsAction=\"ifRoom\" \/&gt;<\/code><\/pre>\n<h2>6. Design and Customizing the AppBar<\/h2>\n<p>\n        The AppBar provides default design, but it can be customized as needed.<br \/>\n        The following section discusses how to modify the style of the AppBar and additional customization options.\n    <\/p>\n<h3>6.1 Modify AppBar Style in styles.xml<\/h3>\n<pre><code>&lt;style name=\"AppTheme\" parent=\"Theme.AppCompat.Light.DarkActionBar\"&gt;\n    &lt;item name=\"colorPrimary\"&gt;#3F51B5&lt;\/item&gt;\n    &lt;item name=\"colorPrimaryDark\"&gt;#303F9F&lt;\/item&gt;\n    &lt;item name=\"colorAccent\"&gt;#FF4081&lt;\/item&gt;\n    &lt;\/style&gt;<\/code><\/pre>\n<h3>6.2 Change Colors<\/h3>\n<p>\n        To change colors and styles, define colors in <code>res\/values\/colors.xml<\/code> and use them in<br \/>\n        <code>styles.xml<\/code>. You can modify the color codes appropriately to change them.\n    <\/p>\n<h2>7. Conclusion<\/h2>\n<p>\n        Through this tutorial, you learned about the role and implementation of the AppBar in Android app development using Java.<br \/>\n        The AppBar is an essential component of the app, providing users with an intuitive interface that enhances their experience.<br \/>\n        By customizing the AppBar in various ways, you can improve the overall style and functionality of your app.<br \/>\n        Now you have the ability to integrate the AppBar into your app to provide a variety of features.<br \/>\n        Continue to practice and add various functionalities to create a more advanced app!\n    <\/p>\n<p><\/body><\/p>\n","protected":false},"excerpt":{"rendered":"<p>1. What is AppBar? AppBar is an essential component that makes up the basic user interface in Android apps. It is typically positioned at the top of the screen, displaying the title of the current screen and providing users with tools to access the app&#8217;s main features. The AppBar in Android is implemented through the &hellip; <a href=\"https:\/\/atmokpo.com\/w\/37191\/\" class=\"more-link\">\ub354 \ubcf4\uae30<span class=\"screen-reader-text\"> &#8220;Java Android App Development Course, Using the App Bar&#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-37191","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, Using the App Bar - \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\/37191\/\" \/>\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, Using the App Bar - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"og:description\" content=\"1. What is AppBar? AppBar is an essential component that makes up the basic user interface in Android apps. It is typically positioned at the top of the screen, displaying the title of the current screen and providing users with tools to access the app&#8217;s main features. The AppBar in Android is implemented through the &hellip; \ub354 \ubcf4\uae30 &quot;Java Android App Development Course, Using the App Bar&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/atmokpo.com\/w\/37191\/\" \/>\n<meta property=\"og:site_name\" content=\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"article:published_time\" content=\"2024-11-01T09:55:37+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-01T11:36:17+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\/37191\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/37191\/\"},\"author\":{\"name\":\"root\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\"},\"headline\":\"Java Android App Development Course, Using the App Bar\",\"datePublished\":\"2024-11-01T09:55:37+00:00\",\"dateModified\":\"2024-11-01T11:36:17+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/atmokpo.com\/w\/37191\/\"},\"wordCount\":536,\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"articleSection\":[\"Java Android app development\"],\"inLanguage\":\"ko-KR\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/atmokpo.com\/w\/37191\/\",\"url\":\"https:\/\/atmokpo.com\/w\/37191\/\",\"name\":\"Java Android App Development Course, Using the App Bar - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#website\"},\"datePublished\":\"2024-11-01T09:55:37+00:00\",\"dateModified\":\"2024-11-01T11:36:17+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/atmokpo.com\/w\/37191\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/atmokpo.com\/w\/37191\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/atmokpo.com\/w\/37191\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\ud648\",\"item\":\"https:\/\/atmokpo.com\/w\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Java Android App Development Course, Using the App Bar\"}]},{\"@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, Using the App Bar - \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\/37191\/","og_locale":"ko_KR","og_type":"article","og_title":"Java Android App Development Course, Using the App Bar - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","og_description":"1. What is AppBar? AppBar is an essential component that makes up the basic user interface in Android apps. It is typically positioned at the top of the screen, displaying the title of the current screen and providing users with tools to access the app&#8217;s main features. The AppBar in Android is implemented through the &hellip; \ub354 \ubcf4\uae30 \"Java Android App Development Course, Using the App Bar\"","og_url":"https:\/\/atmokpo.com\/w\/37191\/","og_site_name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","article_published_time":"2024-11-01T09:55:37+00:00","article_modified_time":"2024-11-01T11:36:17+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\/37191\/#article","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/37191\/"},"author":{"name":"root","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7"},"headline":"Java Android App Development Course, Using the App Bar","datePublished":"2024-11-01T09:55:37+00:00","dateModified":"2024-11-01T11:36:17+00:00","mainEntityOfPage":{"@id":"https:\/\/atmokpo.com\/w\/37191\/"},"wordCount":536,"publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"articleSection":["Java Android app development"],"inLanguage":"ko-KR"},{"@type":"WebPage","@id":"https:\/\/atmokpo.com\/w\/37191\/","url":"https:\/\/atmokpo.com\/w\/37191\/","name":"Java Android App Development Course, Using the App Bar - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/#website"},"datePublished":"2024-11-01T09:55:37+00:00","dateModified":"2024-11-01T11:36:17+00:00","breadcrumb":{"@id":"https:\/\/atmokpo.com\/w\/37191\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/atmokpo.com\/w\/37191\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/atmokpo.com\/w\/37191\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\ud648","item":"https:\/\/atmokpo.com\/w\/en\/"},{"@type":"ListItem","position":2,"name":"Java Android App Development Course, Using the App Bar"}]},{"@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\/37191","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=37191"}],"version-history":[{"count":1,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/37191\/revisions"}],"predecessor-version":[{"id":37192,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/37191\/revisions\/37192"}],"wp:attachment":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/media?parent=37191"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/categories?post=37191"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/tags?post=37191"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}