{"id":36923,"date":"2024-11-01T09:53:22","date_gmt":"2024-11-01T09:53:22","guid":{"rendered":"http:\/\/atmokpo.com\/w\/?p=36923"},"modified":"2024-11-01T11:43:00","modified_gmt":"2024-11-01T11:43:00","slug":"kotlin-android-app-development-course-arranged-in-a-hierarchical-structure-constraintlayout","status":"publish","type":"post","link":"https:\/\/atmokpo.com\/w\/36923\/","title":{"rendered":"kotlin android app development course, arranged in a hierarchical structure &#8211; ConstraintLayout"},"content":{"rendered":"<p><body><\/p>\n<article>\n<p>When developing Android apps, the user interface (UI) plays a very important role, and various layouts can design the screen cleanly and effectively. Among them, <strong>ConstraintLayout<\/strong> is one of the powerful layouts that helps create complex UIs more easily. In this course, we will take a detailed look at how to use ConstraintLayout and the related techniques.<\/p>\n<h2>1. What is ConstraintLayout?<\/h2>\n<p>ConstraintLayout is one of the layouts used to place UI elements in Android. It allows each view to set its position based on its relationship with other views. In other words, the position of UI elements is determined by relative constraints. Using this layout, you can create smooth and responsive designs without complex hierarchies.<\/p>\n<h3>1.1 Why use ConstraintLayout?<\/h3>\n<ul>\n<li><strong>Flexible Layout:<\/strong> It supports flexible UI design by defining relationships between various views.<\/li>\n<li><strong>Performance:<\/strong> Performance can be optimized by avoiding nested layouts.<\/li>\n<li><strong>Compatibility with Design Tools:<\/strong> It integrates easily with the Layout Editor provided by Android Studio.<\/li>\n<li><strong>Readability:<\/strong> The codebase is clean and intuitive.<\/li>\n<\/ul>\n<h2>2. Basic Structure of ConstraintLayout<\/h2>\n<p>When constructing a UI using ConstraintLayout, defining the constraints for each view is very important. The basic structure of <strong>ConstraintLayout<\/strong> is defined in XML, and we will learn the basic usage through the example below.<\/p>\n<pre>\n            <code>\n&lt;androidx.constraintlayout.widget.ConstraintLayout\n    xmlns:android=\"http:\/\/schemas.android.com\/apk\/res\/android\"\n    xmlns:app=\"http:\/\/schemas.android.com\/apk\/res-auto\"\n    android:layout_width=\"match_parent\"\n    android:layout_height=\"match_parent\"&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, ConstraintLayout!\"\n        app:layout_constraintTop_toTopOf=\"parent\"\n        app:layout_constraintLeft_toLeftOf=\"parent\" \/&gt;\n\n&lt;\/androidx.constraintlayout.widget.ConstraintLayout&gt;\n            <\/code>\n        <\/pre>\n<p>In this example, you can see that the TextView is fixed to the top and left of the ConstraintLayout. This way, the position of each view can be varied.<\/p>\n<h2>3. Various Constraints of ConstraintLayout<\/h2>\n<p>In ConstraintLayout, you can adjust the position of views through various constraints. Here are the main constraints:<\/p>\n<h3>3.1 Relationship with Parent Elements<\/h3>\n<ul>\n<li><strong>layout_constraintTop_toTopOf:<\/strong> Fixed to the top of the parent<\/li>\n<li><strong>layout_constraintBottom_toBottomOf:<\/strong> Fixed to the bottom of the parent<\/li>\n<li><strong>layout_constraintLeft_toLeftOf:<\/strong> Fixed to the left of the parent<\/li>\n<li><strong>layout_constraintRight_toRightOf:<\/strong> Fixed to the right of the parent<\/li>\n<\/ul>\n<h3>3.2 Relationship with Other Views<\/h3>\n<ul>\n<li><strong>layout_constraintTop_toBottomOf:<\/strong> Fixed to the bottom of another view<\/li>\n<li><strong>layout_constraintBottom_toTopOf:<\/strong> Fixed to the top of another view<\/li>\n<li><strong>layout_constraintLeft_toRightOf:<\/strong> Fixed to the right of another view<\/li>\n<li><strong>layout_constraintRight_toLeftOf:<\/strong> Fixed to the left of another view<\/li>\n<\/ul>\n<h2>4. Practice: Creating a Simple App<\/h2>\n<p>Now, let\u2019s create a simple app. This app will use TextView, EditText, and Button to display the text entered by the user on the screen.<\/p>\n<h3>4.1 Creating an XML Layout File<\/h3>\n<pre>\n            <code>\n&lt;androidx.constraintlayout.widget.ConstraintLayout\n    xmlns:android=\"http:\/\/schemas.android.com\/apk\/res\/android\"\n    xmlns:app=\"http:\/\/schemas.android.com\/apk\/res-auto\"\n    android:layout_width=\"match_parent\"\n    android:layout_height=\"match_parent\"&gt;\n\n    &lt;EditText\n        android:id=\"@+id\/editText\"\n        android:layout_width=\"0dp\"\n        android:layout_height=\"wrap_content\"\n        app:layout_constraintTop_toTopOf=\"parent\"\n        app:layout_constraintLeft_toLeftOf=\"parent\"\n        app:layout_constraintRight_toRightOf=\"parent\"\n        android:hint=\"Enter text here\" \/&gt;\n\n    &lt;Button\n        android:id=\"@+id\/button\"\n        android:layout_width=\"wrap_content\"\n        android:layout_height=\"wrap_content\"\n        app:layout_constraintTop_toBottomOf=\"@+id\/editText\"\n        app:layout_constraintLeft_toLeftOf=\"parent\"\n        android:text=\"Submit\" \/&gt;\n\n    &lt;TextView\n        android:id=\"@+id\/textView\"\n        android:layout_width=\"0dp\"\n        android:layout_height=\"wrap_content\"\n        app:layout_constraintTop_toBottomOf=\"@+id\/button\"\n        app:layout_constraintLeft_toLeftOf=\"parent\"\n        app:layout_constraintRight_toRightOf=\"parent\"\n        android:text=\"\" \/&gt;\n\n&lt;\/androidx.constraintlayout.widget.ConstraintLayout&gt;\n            <\/code>\n        <\/pre>\n<h3>4.2 Writing Activity Code<\/h3>\n<p>Now we will write the MainActivity.kt file to display the input text in TextView when the button is clicked.<\/p>\n<pre>\n            <code>\npackage com.example.constraintlayoutdemo\n\nimport androidx.appcompat.app.AppCompatActivity\nimport android.os.Bundle\nimport android.view.View\nimport android.widget.Button\nimport android.widget.EditText\nimport android.widget.TextView\n\nclass MainActivity : AppCompatActivity() {\n\n    private lateinit var editText: EditText\n    private lateinit var button: Button\n    private lateinit var textView: TextView\n\n    override fun onCreate(savedInstanceState: Bundle?) {\n        super.onCreate(savedInstanceState)\n        setContentView(R.layout.activity_main)\n        \n        editText = findViewById(R.id.editText)\n        button = findViewById(R.id.button)\n        textView = findViewById(R.id.textView)\n\n        button.setOnClickListener {\n            val inputText = editText.text.toString()\n            textView.text = inputText\n        }\n    }\n}\n            <\/code>\n        <\/pre>\n<h2>5. Summary<\/h2>\n<p>In this course, we explored the characteristics and usage of ConstraintLayout. ConstraintLayout is a powerful tool for efficiently placing complex UIs and allows flexible positioning of views through various constraints. Finally, we experienced the charm of ConstraintLayout through practical work by creating a simple app.<\/p>\n<h2>6. Additional Learning Resources<\/h2>\n<p>The ability to configure various UIs using a single layout is a very important aspect of ConstraintLayout in mobile app development. Here are more resources on ConstraintLayout.<\/p>\n<ul>\n<li><a href=\"https:\/\/developer.android.com\/training\/constraint-layout\">Official Android Developer Documentation<\/a><\/li>\n<li><a href=\"https:\/\/developer.android.com\/reference\/androidx\/constraintlayout\/widget\/ConstraintLayout\">ConstraintLayout Class Reference<\/a><\/li>\n<li><a href=\"https:\/\/android-developers.googleblog.com\/2016\/05\/constraintlayout.html\">ConstraintLayout Blog Post<\/a><\/li>\n<\/ul>\n<p>Now, use ConstraintLayout in your app to create a better user experience! If you have any questions, feel free to ask in the comments. Thank you!<\/p>\n<\/article>\n<p><\/body><\/p>\n","protected":false},"excerpt":{"rendered":"<p>When developing Android apps, the user interface (UI) plays a very important role, and various layouts can design the screen cleanly and effectively. Among them, ConstraintLayout is one of the powerful layouts that helps create complex UIs more easily. In this course, we will take a detailed look at how to use ConstraintLayout and the &hellip; <a href=\"https:\/\/atmokpo.com\/w\/36923\/\" class=\"more-link\">\ub354 \ubcf4\uae30<span class=\"screen-reader-text\"> &#8220;kotlin android app development course, arranged in a hierarchical structure &#8211; ConstraintLayout&#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":[143],"tags":[],"class_list":["post-36923","post","type-post","status-publish","format-standard","hentry","category-kotlin-android-app-development"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.2 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>kotlin android app development course, arranged in a hierarchical structure - ConstraintLayout - \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\/36923\/\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"kotlin android app development course, arranged in a hierarchical structure - ConstraintLayout - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"og:description\" content=\"When developing Android apps, the user interface (UI) plays a very important role, and various layouts can design the screen cleanly and effectively. Among them, ConstraintLayout is one of the powerful layouts that helps create complex UIs more easily. In this course, we will take a detailed look at how to use ConstraintLayout and the &hellip; \ub354 \ubcf4\uae30 &quot;kotlin android app development course, arranged in a hierarchical structure &#8211; ConstraintLayout&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/atmokpo.com\/w\/36923\/\" \/>\n<meta property=\"og:site_name\" content=\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"article:published_time\" content=\"2024-11-01T09:53:22+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-01T11:43:00+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=\"4\ubd84\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/atmokpo.com\/w\/36923\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/36923\/\"},\"author\":{\"name\":\"root\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\"},\"headline\":\"kotlin android app development course, arranged in a hierarchical structure &#8211; ConstraintLayout\",\"datePublished\":\"2024-11-01T09:53:22+00:00\",\"dateModified\":\"2024-11-01T11:43:00+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/atmokpo.com\/w\/36923\/\"},\"wordCount\":521,\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"articleSection\":[\"Kotlin Android app development\"],\"inLanguage\":\"ko-KR\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/atmokpo.com\/w\/36923\/\",\"url\":\"https:\/\/atmokpo.com\/w\/36923\/\",\"name\":\"kotlin android app development course, arranged in a hierarchical structure - ConstraintLayout - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#website\"},\"datePublished\":\"2024-11-01T09:53:22+00:00\",\"dateModified\":\"2024-11-01T11:43:00+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/atmokpo.com\/w\/36923\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/atmokpo.com\/w\/36923\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/atmokpo.com\/w\/36923\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\ud648\",\"item\":\"https:\/\/atmokpo.com\/w\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"kotlin android app development course, arranged in a hierarchical structure &#8211; ConstraintLayout\"}]},{\"@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":"kotlin android app development course, arranged in a hierarchical structure - ConstraintLayout - \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\/36923\/","og_locale":"ko_KR","og_type":"article","og_title":"kotlin android app development course, arranged in a hierarchical structure - ConstraintLayout - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","og_description":"When developing Android apps, the user interface (UI) plays a very important role, and various layouts can design the screen cleanly and effectively. Among them, ConstraintLayout is one of the powerful layouts that helps create complex UIs more easily. In this course, we will take a detailed look at how to use ConstraintLayout and the &hellip; \ub354 \ubcf4\uae30 \"kotlin android app development course, arranged in a hierarchical structure &#8211; ConstraintLayout\"","og_url":"https:\/\/atmokpo.com\/w\/36923\/","og_site_name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","article_published_time":"2024-11-01T09:53:22+00:00","article_modified_time":"2024-11-01T11:43:00+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":"4\ubd84"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/atmokpo.com\/w\/36923\/#article","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/36923\/"},"author":{"name":"root","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7"},"headline":"kotlin android app development course, arranged in a hierarchical structure &#8211; ConstraintLayout","datePublished":"2024-11-01T09:53:22+00:00","dateModified":"2024-11-01T11:43:00+00:00","mainEntityOfPage":{"@id":"https:\/\/atmokpo.com\/w\/36923\/"},"wordCount":521,"publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"articleSection":["Kotlin Android app development"],"inLanguage":"ko-KR"},{"@type":"WebPage","@id":"https:\/\/atmokpo.com\/w\/36923\/","url":"https:\/\/atmokpo.com\/w\/36923\/","name":"kotlin android app development course, arranged in a hierarchical structure - ConstraintLayout - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/#website"},"datePublished":"2024-11-01T09:53:22+00:00","dateModified":"2024-11-01T11:43:00+00:00","breadcrumb":{"@id":"https:\/\/atmokpo.com\/w\/36923\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/atmokpo.com\/w\/36923\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/atmokpo.com\/w\/36923\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\ud648","item":"https:\/\/atmokpo.com\/w\/en\/"},{"@type":"ListItem","position":2,"name":"kotlin android app development course, arranged in a hierarchical structure &#8211; ConstraintLayout"}]},{"@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\/36923","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=36923"}],"version-history":[{"count":1,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/36923\/revisions"}],"predecessor-version":[{"id":36924,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/36923\/revisions\/36924"}],"wp:attachment":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/media?parent=36923"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/categories?post=36923"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/tags?post=36923"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}