{"id":37159,"date":"2024-11-01T09:55:20","date_gmt":"2024-11-01T09:55:20","guid":{"rendered":"http:\/\/atmokpo.com\/w\/?p=37159"},"modified":"2024-11-01T11:36:25","modified_gmt":"2024-11-01T11:36:25","slug":"java-android-app-development-course-linear-layout-linearlayout","status":"publish","type":"post","link":"https:\/\/atmokpo.com\/w\/37159\/","title":{"rendered":"Java Android App Development Course, Linear Layout &#8211; LinearLayout"},"content":{"rendered":"<h2>Java Android App Development Course: Linear Layout &#8211; LinearLayout<\/h2>\n<p>In Android app development, there are various components that make up the user interface (UI), among which <strong>LinearLayout<\/strong> is one of the most basic and important layouts. LinearLayout provides the functionality to arrange child views in a linear fashion, either horizontally or vertically. In this course, we will explain the concept, usage, attributes, and examples of LinearLayout in detail.<\/p>\n<h3>1. Understanding LinearLayout<\/h3>\n<p>LinearLayout is a view group that allows you to arrange child views in a single row. By default, it allows aligning child views in two directions: <strong>horizontal<\/strong> and <strong>vertical<\/strong>. This allows for quick and easy configuration of simple layouts.<\/p>\n<h4>1.1. Direction of LinearLayout<\/h4>\n<ul>\n<li><strong>Vertical Direction<\/strong>: Child views are arranged from top to bottom.<\/li>\n<li><strong>Horizontal Direction<\/strong>: Child views are arranged from left to right.<\/li>\n<\/ul>\n<h4>1.2. Components<\/h4>\n<p>LinearLayout has the following characteristics:<\/p>\n<ul>\n<li><strong>orientation<\/strong>: Sets the direction of the LinearLayout. (vertical\/horizontal)<\/li>\n<li><strong>layout_width<\/strong>: Sets the width of the LinearLayout. (match_parent\/wrap_content)<\/li>\n<li><strong>layout_height<\/strong>: Sets the height of the LinearLayout. (match_parent\/wrap_content)<\/li>\n<li><strong>gravity<\/strong>: Controls the position of child views.<\/li>\n<li><strong>padding<\/strong>: Sets the space between the LinearLayout and the child views.<\/li>\n<li><strong>layout_margin<\/strong>: Sets the space between child views and other elements.<\/li>\n<\/ul>\n<h3>2. How to Use LinearLayout<\/h3>\n<p>To use LinearLayout, define it in the XML layout file and add other views inside it. The basic structure of a LinearLayout is as follows.<\/p>\n<pre><code>&lt;LinearLayout\n    android:layout_width=\"match_parent\"\n    android:layout_height=\"match_parent\"\n    android:orientation=\"vertical\"&gt;\n\n    &lt;TextView\n        android:layout_width=\"wrap_content\"\n        android:layout_height=\"wrap_content\"\n        android:text=\"Hello!\" \/&gt;\n\n    &lt;Button\n        android:layout_width=\"wrap_content\"\n        android:layout_height=\"wrap_content\"\n        android:text=\"Click me!\" \/&gt;\n\n&lt;\/LinearLayout&gt;<\/code><\/pre>\n<h4>2.1. Example of LinearLayout Settings<\/h4>\n<p>Below is an example of a LinearLayout set in a vertical direction. In this example, we will create a simple app using basic UI elements, namely TextView and Button.<\/p>\n<pre><code>&lt;?xml version=\"1.0\" encoding=\"utf-8\"?&gt;\n&lt;LinearLayout xmlns:android=\"http:\/\/schemas.android.com\/apk\/res\/android\"\n    android:layout_width=\"match_parent\"\n    android:layout_height=\"match_parent\"\n    android:orientation=\"vertical\"\n    android:padding=\"16dp\"&gt;\n\n    &lt;TextView\n        android:layout_width=\"wrap_content\"\n        android:layout_height=\"wrap_content\"\n        android:text=\"Hello, LinearLayout example!\" \n        android:textSize=\"24sp\"\n        android:layout_gravity=\"center\"\/&gt;\n\n    &lt;Button\n        android:layout_width=\"wrap_content\"\n        android:layout_height=\"wrap_content\"\n        android:text=\"Click!\"\n        android:layout_gravity=\"center\"\/&gt;\n\n&lt;\/LinearLayout&gt;<\/code><\/pre>\n<h4>2.2. Horizontal Example<\/h4>\n<p>LinearLayout can also be set in horizontal direction. The following code is an example of arranging a button and a text view horizontally.<\/p>\n<pre><code>&lt;LinearLayout\n    android:layout_width=\"match_parent\"\n    android:layout_height=\"wrap_content\"\n    android:orientation=\"horizontal\"\n    android:padding=\"16dp\"&gt;\n\n    &lt;TextView\n        android:layout_width=\"wrap_content\"\n        android:layout_height=\"wrap_content\"\n        android:text=\"Button: \" \n        android:textSize=\"18sp\"\/&gt;\n\n    &lt;Button\n        android:layout_width=\"wrap_content\"\n        android:layout_height=\"wrap_content\"\n        android:text=\"Click\"\/&gt;\n\n&lt;\/LinearLayout&gt;<\/code><\/pre>\n<h3>3. Key Attributes of LinearLayout<\/h3>\n<p>Now, let&#8217;s explain the key attributes you need to know when using LinearLayout.<\/p>\n<h4>3.1. orientation<\/h4>\n<p>The orientation attribute sets the direction of the LinearLayout. The default value is vertical direction.<\/p>\n<pre><code>android:orientation=\"vertical\"<\/code><\/pre>\n<pre><code>android:orientation=\"horizontal\"<\/code><\/pre>\n<h4>3.2. layout_gravity<\/h4>\n<p>The layout_gravity attribute sets the position of child views. By default, child views will take the full width or height of the LinearLayout.<\/p>\n<pre><code>android:layout_gravity=\"center\"<\/code><\/pre>\n<h4>3.3. weight<\/h4>\n<p>The weight attribute is very useful for setting the proportion of child views. This allows you to adjust the space that child views occupy within the LinearLayout.<\/p>\n<p>Below is an example where two buttons are used, sharing an equal proportion.<\/p>\n<pre><code>&lt;LinearLayout\n    android:layout_width=\"match_parent\"\n    android:layout_height=\"wrap_content\"\n    android:orientation=\"horizontal\"&gt;\n\n    &lt;Button\n        android:layout_width=\"0dp\"\n        android:layout_height=\"wrap_content\"\n        android:layout_weight=\"1\"\n        android:text=\"First Button\"\/&gt;\n\n    &lt;Button\n        android:layout_width=\"0dp\"\n        android:layout_height=\"wrap_content\"\n        android:layout_weight=\"1\"\n        android:text=\"Second Button\"\/&gt;\n\n&lt;\/LinearLayout&gt;<\/code><\/pre>\n<h3>4. Example Application Using LinearLayout<\/h3>\n<p>Now, let&#8217;s create a simple app that uses LinearLayout. The following example shows an app where the user inputs their name, and upon clicking a button, a welcome message is displayed.<\/p>\n<h4>4.1. XML Layout File (activity_main.xml)<\/h4>\n<pre><code>&lt;LinearLayout xmlns:android=\"http:\/\/schemas.android.com\/apk\/res\/android\"\n    android:layout_width=\"match_parent\"\n    android:layout_height=\"match_parent\"\n    android:orientation=\"vertical\"\n    android:padding=\"16dp\"&gt;\n\n    &lt;EditText\n        android:id=\"@+id\/editTextName\"\n        android:layout_width=\"match_parent\"\n        android:layout_height=\"wrap_content\"\n        android:hint=\"Enter your name\"\/&gt;\n\n    &lt;Button\n        android:id=\"@+id\/buttonGreet\"\n        android:layout_width=\"wrap_content\"\n        android:layout_height=\"wrap_content\"\n        android:text=\"Greet\"\/&gt;\n\n    &lt;TextView\n        android:id=\"@+id\/textViewGreeting\"\n        android:layout_width=\"wrap_content\"\n        android:layout_height=\"wrap_content\"\n        android:text=\"\"\n        android:textSize=\"24sp\"\/&gt;\n\n&lt;\/LinearLayout&gt;<\/code><\/pre>\n<h4>4.2. Java Code (MainActivity.java)<\/h4>\n<pre><code>package com.example.helloapp;\n\nimport android.os.Bundle;\nimport android.view.View;\nimport android.widget.Button;\nimport android.widget.EditText;\nimport android.widget.TextView;\nimport androidx.appcompat.app.AppCompatActivity;\n\npublic class MainActivity extends AppCompatActivity {\n\n    private EditText editTextName;\n    private Button buttonGreet;\n    private TextView textViewGreeting;\n\n    @Override\n    protected void onCreate(Bundle savedInstanceState) {\n        super.onCreate(savedInstanceState);\n        setContentView(R.layout.activity_main);\n\n        editTextName = findViewById(R.id.editTextName);\n        buttonGreet = findViewById(R.id.buttonGreet);\n        textViewGreeting = findViewById(R.id.textViewGreeting);\n\n        buttonGreet.setOnClickListener(new View.OnClickListener() {\n            @Override\n            public void onClick(View v) {\n                String name = editTextName.getText().toString();\n                String greeting = \"Hello, \" + name + \"!\";\n                textViewGreeting.setText(greeting);\n            }\n        });\n    }\n}<\/code><\/pre>\n<h3>5. Precautions When Using LinearLayout<\/h3>\n<ul>\n<li>Be cautious not to include too many child views in LinearLayout as it may impact performance. Instead, consider other layouts such as ConstraintLayout.<\/li>\n<li>When using layout_weight, the width or height of child views should be set to &#8216;0dp&#8217;.<\/li>\n<li>Ensure that the layout properties of views are set correctly to achieve the desired UI results.<\/li>\n<\/ul>\n<h3>6. Conclusion<\/h3>\n<p>LinearLayout is one of the most basic yet very useful layouts among Android UI components. In this course, we explored the concept, usage, key attributes, and examples related to LinearLayout. You can effectively configure simple user interfaces using LinearLayout. Furthermore, you can use it alongside various layout options to create more complex and sophisticated UIs.<\/p>\n<p>Now, try creating your own app using LinearLayout! It would be great to practice by combining various UI elements and layout properties.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Java Android App Development Course: Linear Layout &#8211; LinearLayout In Android app development, there are various components that make up the user interface (UI), among which LinearLayout is one of the most basic and important layouts. LinearLayout provides the functionality to arrange child views in a linear fashion, either horizontally or vertically. In this course, &hellip; <a href=\"https:\/\/atmokpo.com\/w\/37159\/\" class=\"more-link\">\ub354 \ubcf4\uae30<span class=\"screen-reader-text\"> &#8220;Java Android App Development Course, Linear Layout &#8211; LinearLayout&#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-37159","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, Linear Layout - LinearLayout - \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\/37159\/\" \/>\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, Linear Layout - LinearLayout - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"og:description\" content=\"Java Android App Development Course: Linear Layout &#8211; LinearLayout In Android app development, there are various components that make up the user interface (UI), among which LinearLayout is one of the most basic and important layouts. LinearLayout provides the functionality to arrange child views in a linear fashion, either horizontally or vertically. In this course, &hellip; \ub354 \ubcf4\uae30 &quot;Java Android App Development Course, Linear Layout &#8211; LinearLayout&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/atmokpo.com\/w\/37159\/\" \/>\n<meta property=\"og:site_name\" content=\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"article:published_time\" content=\"2024-11-01T09:55:20+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-01T11:36:25+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\/37159\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/37159\/\"},\"author\":{\"name\":\"root\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\"},\"headline\":\"Java Android App Development Course, Linear Layout &#8211; LinearLayout\",\"datePublished\":\"2024-11-01T09:55:20+00:00\",\"dateModified\":\"2024-11-01T11:36:25+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/atmokpo.com\/w\/37159\/\"},\"wordCount\":580,\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"articleSection\":[\"Java Android app development\"],\"inLanguage\":\"ko-KR\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/atmokpo.com\/w\/37159\/\",\"url\":\"https:\/\/atmokpo.com\/w\/37159\/\",\"name\":\"Java Android App Development Course, Linear Layout - LinearLayout - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#website\"},\"datePublished\":\"2024-11-01T09:55:20+00:00\",\"dateModified\":\"2024-11-01T11:36:25+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/atmokpo.com\/w\/37159\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/atmokpo.com\/w\/37159\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/atmokpo.com\/w\/37159\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\ud648\",\"item\":\"https:\/\/atmokpo.com\/w\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Java Android App Development Course, Linear Layout &#8211; LinearLayout\"}]},{\"@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, Linear Layout - LinearLayout - \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\/37159\/","og_locale":"ko_KR","og_type":"article","og_title":"Java Android App Development Course, Linear Layout - LinearLayout - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","og_description":"Java Android App Development Course: Linear Layout &#8211; LinearLayout In Android app development, there are various components that make up the user interface (UI), among which LinearLayout is one of the most basic and important layouts. LinearLayout provides the functionality to arrange child views in a linear fashion, either horizontally or vertically. In this course, &hellip; \ub354 \ubcf4\uae30 \"Java Android App Development Course, Linear Layout &#8211; LinearLayout\"","og_url":"https:\/\/atmokpo.com\/w\/37159\/","og_site_name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","article_published_time":"2024-11-01T09:55:20+00:00","article_modified_time":"2024-11-01T11:36:25+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\/37159\/#article","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/37159\/"},"author":{"name":"root","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7"},"headline":"Java Android App Development Course, Linear Layout &#8211; LinearLayout","datePublished":"2024-11-01T09:55:20+00:00","dateModified":"2024-11-01T11:36:25+00:00","mainEntityOfPage":{"@id":"https:\/\/atmokpo.com\/w\/37159\/"},"wordCount":580,"publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"articleSection":["Java Android app development"],"inLanguage":"ko-KR"},{"@type":"WebPage","@id":"https:\/\/atmokpo.com\/w\/37159\/","url":"https:\/\/atmokpo.com\/w\/37159\/","name":"Java Android App Development Course, Linear Layout - LinearLayout - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/#website"},"datePublished":"2024-11-01T09:55:20+00:00","dateModified":"2024-11-01T11:36:25+00:00","breadcrumb":{"@id":"https:\/\/atmokpo.com\/w\/37159\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/atmokpo.com\/w\/37159\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/atmokpo.com\/w\/37159\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\ud648","item":"https:\/\/atmokpo.com\/w\/en\/"},{"@type":"ListItem","position":2,"name":"Java Android App Development Course, Linear Layout &#8211; LinearLayout"}]},{"@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\/37159","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=37159"}],"version-history":[{"count":1,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/37159\/revisions"}],"predecessor-version":[{"id":37160,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/37159\/revisions\/37160"}],"wp:attachment":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/media?parent=37159"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/categories?post=37159"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/tags?post=37159"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}