{"id":37025,"date":"2024-11-01T09:54:11","date_gmt":"2024-11-01T09:54:11","guid":{"rendered":"http:\/\/atmokpo.com\/w\/?p=37025"},"modified":"2024-11-01T11:42:33","modified_gmt":"2024-11-01T11:42:33","slug":"android-app-development-course-in-kotlin-creating-the-keypad-screen-of-a-phone-app","status":"publish","type":"post","link":"https:\/\/atmokpo.com\/w\/37025\/","title":{"rendered":"Android App Development Course in Kotlin, Creating the Keypad Screen of a Phone App"},"content":{"rendered":"<p><body><\/p>\n<p>In Android app development, UI\/UX is a very important factor. In this course, we will learn how to implement the keypad screen of a phone app using Kotlin. Through this example, you will learn basic layout construction, button actions, event handling, and UI state management.<\/p>\n<h2>1. Project Setup<\/h2>\n<p>After launching Android Studio, create a new project. Please follow the settings below:<\/p>\n<ul>\n<li>Application Name: PhoneDialer<\/li>\n<li>Language: Kotlin<\/li>\n<li>Minimum API Level: API 21: Android 5.0 (Lollipop)<\/li>\n<\/ul>\n<p>Then click &#8216;Finish&#8217; to start the project.<\/p>\n<h2>2. Creating Layout<\/h2>\n<p>Now let\u2019s modify the main XML layout file to design the keypad screen. Open the <code>res\/layout\/activity_main.xml<\/code> file and add the following code:<\/p>\n<pre><code>&lt;RelativeLayout xmlns:android=\"http:\/\/schemas.android.com\/apk\/res\/android\"\n    android:layout_width=\"match_parent\"\n    android:layout_height=\"match_parent\"\n    android:padding=\"16dp\"&gt;\n\n    &lt;TextView\n        android:id=\"@+id\/display\"\n        android:layout_width=\"match_parent\"\n        android:layout_height=\"wrap_content\"\n        android:textSize=\"36sp\"\n        android:layout_alignParentTop=\"true\"\n        android:padding=\"16dp\"\n        android:background=\"#e0e0e0\"\n        android:gravity=\"end\" \/&gt;\n\n    &lt;GridLayout\n        android:layout_width=\"match_parent\"\n        android:layout_height=\"0dp\"\n        android:layout_above=\"@id\/display\"\n        android:layout_marginTop=\"16dp\"\n        android:rowCount=\"4\"\n        android:columnCount=\"3\"\n        android:layout_gravity=\"center\"&gt;\n\n        &lt;Button\n            android:id=\"@+id\/button1\"\n            android:layout_width=\"0dp\"\n            android:layout_height=\"wrap_content\"\n            android:layout_columnWeight=\"1\"\n            android:text=\"1\"\n            android:textSize=\"24sp\" \/&gt;\n\n        &lt;Button\n            android:id=\"@+id\/button2\"\n            android:layout_width=\"0dp\"\n            android:layout_height=\"wrap_content\"\n            android:layout_columnWeight=\"1\"\n            android:text=\"2\"\n            android:textSize=\"24sp\" \/&gt;\n\n        &lt;Button\n            android:id=\"@+id\/button3\"\n            android:layout_width=\"0dp\"\n            android:layout_height=\"wrap_content\"\n            android:layout_columnWeight=\"1\"\n            android:text=\"3\"\n            android:textSize=\"24sp\" \/&gt;\n\n        &lt;Button\n            android:id=\"@+id\/button4\"\n            android:layout_width=\"0dp\"\n            android:layout_height=\"wrap_content\"\n            android:layout_columnWeight=\"1\"\n            android:text=\"4\"\n            android:textSize=\"24sp\" \/&gt;\n\n        &lt;Button\n            android:id=\"@+id\/button5\"\n            android:layout_width=\"0dp\"\n            android:layout_height=\"wrap_content\"\n            android:layout_columnWeight=\"1\"\n            android:text=\"5\"\n            android:textSize=\"24sp\" \/&gt;\n\n        &lt;Button\n            android:id=\"@+id\/button6\"\n            android:layout_width=\"0dp\"\n            android:layout_height=\"wrap_content\"\n            android:layout_columnWeight=\"1\"\n            android:text=\"6\"\n            android:textSize=\"24sp\" \/&gt;\n\n        &lt;Button\n            android:id=\"@+id\/button7\"\n            android:layout_width=\"0dp\"\n            android:layout_height=\"wrap_content\"\n            android:layout_columnWeight=\"1\"\n            android:text=\"7\"\n            android:textSize=\"24sp\" \/&gt;\n\n        &lt;Button\n            android:id=\"@+id\/button8\"\n            android:layout_width=\"0dp\"\n            android:layout_height=\"wrap_content\"\n            android:layout_columnWeight=\"1\"\n            android:text=\"8\"\n            android:textSize=\"24sp\" \/&gt;\n\n        &lt;Button\n            android:id=\"@+id\/button9\"\n            android:layout_width=\"0dp\"\n            android:layout_height=\"wrap_content\"\n            android:layout_columnWeight=\"1\"\n            android:text=\"9\"\n            android:textSize=\"24sp\" \/&gt;\n\n        &lt;Button\n            android:id=\"@+id\/button_star\"\n            android:layout_width=\"0dp\"\n            android:layout_height=\"wrap_content\"\n            android:layout_columnWeight=\"1\"\n            android:text=\"*\"\n            android:textSize=\"24sp\" \/&gt;\n\n        &lt;Button\n            android:id=\"@+id\/button0\"\n            android:layout_width=\"0dp\"\n            android:layout_height=\"wrap_content\"\n            android:layout_columnWeight=\"1\"\n            android:text=\"0\"\n            android:textSize=\"24sp\" \/&gt;\n\n        &lt;Button\n            android:id=\"@+id\/button_hash\"\n            android:layout_width=\"0dp\"\n            android:layout_height=\"wrap_content\"\n            android:layout_columnWeight=\"1\"\n            android:text=\"#\"\n            android:textSize=\"24sp\" \/&gt;\n\n    &lt;\/GridLayout&gt;\n\n&lt;\/RelativeLayout&gt;<\/code><\/pre>\n<p>In the code above, we created a simple text view and a grid layout to build the keypad. Each button includes numbers from 0 to 9, as well as the asterisk (*) and the hash (#). Next, we will set up click events for each button.<\/p>\n<h2>3. Adding Button Click Listeners<\/h2>\n<p>Now let&#8217;s open the <code>MainActivity.kt<\/code> file and add button click listeners. Modify the code as follows:<\/p>\n<pre><code>package com.example.phonedialer\n\nimport android.os.Bundle\nimport android.view.View\nimport android.widget.Button\nimport android.widget.TextView\nimport androidx.appcompat.app.AppCompatActivity\n\nclass MainActivity : AppCompatActivity() {\n    private lateinit var display: TextView\n\n    override fun onCreate(savedInstanceState: Bundle?) {\n        super.onCreate(savedInstanceState)\n        setContentView(R.layout.activity_main)\n\n        display = findViewById(R.id.display)\n\n        val button1 = findViewById<Button>(R.id.button1)\n        val button2 = findViewById<Button>(R.id.button2)\n        val button3 = findViewById<Button>(R.id.button3)\n        val button4 = findViewById<Button>(R.id.button4)\n        val button5 = findViewById<Button>(R.id.button5)\n        val button6 = findViewById<Button>(R.id.button6)\n        val button7 = findViewById<Button>(R.id.button7)\n        val button8 = findViewById<Button>(R.id.button8)\n        val button9 = findViewById<Button>(R.id.button9)\n        val button0 = findViewById<Button>(R.id.button0)\n        val buttonStar = findViewById<Button>(R.id.button_star)\n        val buttonHash = findViewById<Button>(R.id.button_hash)\n\n        val buttons = listOf(button1, button2, button3, button4, button5, button6, button7, button8, button9, button0, buttonStar, buttonHash)\n\n        for (button in buttons) {\n            button.setOnClickListener {\n                onButtonClick(it as Button)\n            }\n        }\n    }\n\n    private fun onButtonClick(button: Button) {\n        display.append(button.text)\n    }\n}<\/code><\/pre>\n<p>In the code above, we set click listeners for each button, and every time a button is pressed, the corresponding number appears on the screen. The <code>onButtonClick<\/code> method retrieves the text of the pressed button and appends it to the <code>display<\/code> TextView.<\/p>\n<h2>4. Running and Testing the App<\/h2>\n<p>The code is now ready, so let&#8217;s run the app to check if the keypad works properly. Click the &#8216;Run&#8217; button in Android Studio to execute it on the emulator.<\/p>\n<p>This keypad is designed to be easily usable, considering user experience. Every time a number is clicked, that number appears in the top TextView.<\/p>\n<h2>5. Developing Additional Features<\/h2>\n<p>You can add a few additional functionalities to this basic version. For example, you can add a <strong>Clear Number<\/strong> and <strong>Call<\/strong> button to make it suitable for an actual phone app. We will cover this part in the next steps.<\/p>\n<h3>5.1 Adding a Clear Number Button<\/h3>\n<p>To add a button that can clear the number, let&#8217;s add a clear button to the above XML file:<\/p>\n<pre><code>&lt;Button\n    android:id=\"@+id\/button_clear\"\n    android:layout_width=\"match_parent\"\n    android:layout_height=\"wrap_content\"\n    android:text=\"Clear\"\n    android:textSize=\"24sp\"\n    android:layout_marginTop=\"16dp\" \/&gt;<\/code><\/pre>\n<p>Now, let&#8217;s return to <code>MainActivity.kt<\/code> and add a click listener for this button:<\/p>\n<pre><code>val buttonClear = findViewById<Button>(R.id.button_clear)\nbuttonClear.setOnClickListener {\n    display.text = \"\"\n}<\/code><\/pre>\n<h3>5.2 Adding a Call Button<\/h3>\n<p>To add the calling feature, you&#8217;ll also need to add a call button in the XML file as follows:<\/p>\n<pre><code>&lt;Button\n    android:id=\"@+id\/button_call\"\n    android:layout_width=\"match_parent\"\n    android:layout_height=\"wrap_content\"\n    android:text=\"Call\"\n    android:textSize=\"24sp\"\n    android:layout_marginTop=\"16dp\" \/&gt;<\/code><\/pre>\n<p>Then, return to <code>MainActivity.kt<\/code> to set up the click listener for the call button. This button click will require adding <strong>Permissions<\/strong> to actually make a call. First, add the following permission to <code>AndroidManifest.xml<\/code>:<\/p>\n<pre><code>&lt;uses-permission android:name=\"android.permission.CALL_PHONE\" \/&gt;<\/code><\/pre>\n<p>And then, add the click listener for <code>button_call<\/code>:<\/p>\n<pre><code>val buttonCall = findViewById<Button>(R.id.button_call)\nbuttonCall.setOnClickListener {\n    val numberToCall = display.text.toString()\n    if (numberToCall.isNotEmpty()) {\n        val dialIntent = Intent(Intent.ACTION_CALL)\n        dialIntent.data = Uri.parse(\"tel:$numberToCall\")\n        startActivity(dialIntent)\n    }\n}<\/code><\/pre>\n<h2>6. Conclusion<\/h2>\n<p>&#8211; Now, a basic keypad app has been completed. By utilizing UI components in Kotlin and Android, we were able to create a simple phone app. I hope this course has helped you learn the basics of Android app development.<\/p>\n<p>&#8211; Additionally, implementing various features can help you gain more experience and develop it into an app that can be used in real services.<\/p>\n<p>I hope this course has been helpful, and I wish you success on your Android development journey!<\/p>\n<p><\/body><\/p>\n","protected":false},"excerpt":{"rendered":"<p>In Android app development, UI\/UX is a very important factor. In this course, we will learn how to implement the keypad screen of a phone app using Kotlin. Through this example, you will learn basic layout construction, button actions, event handling, and UI state management. 1. Project Setup After launching Android Studio, create a new &hellip; <a href=\"https:\/\/atmokpo.com\/w\/37025\/\" class=\"more-link\">\ub354 \ubcf4\uae30<span class=\"screen-reader-text\"> &#8220;Android App Development Course in Kotlin, Creating the Keypad Screen of a Phone App&#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-37025","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>Android App Development Course in Kotlin, Creating the Keypad Screen of a Phone App - \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\/37025\/\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Android App Development Course in Kotlin, Creating the Keypad Screen of a Phone App - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"og:description\" content=\"In Android app development, UI\/UX is a very important factor. In this course, we will learn how to implement the keypad screen of a phone app using Kotlin. Through this example, you will learn basic layout construction, button actions, event handling, and UI state management. 1. Project Setup After launching Android Studio, create a new &hellip; \ub354 \ubcf4\uae30 &quot;Android App Development Course in Kotlin, Creating the Keypad Screen of a Phone App&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/atmokpo.com\/w\/37025\/\" \/>\n<meta property=\"og:site_name\" content=\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"article:published_time\" content=\"2024-11-01T09:54:11+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-01T11:42:33+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\/37025\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/37025\/\"},\"author\":{\"name\":\"root\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\"},\"headline\":\"Android App Development Course in Kotlin, Creating the Keypad Screen of a Phone App\",\"datePublished\":\"2024-11-01T09:54:11+00:00\",\"dateModified\":\"2024-11-01T11:42:33+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/atmokpo.com\/w\/37025\/\"},\"wordCount\":504,\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"articleSection\":[\"Kotlin Android app development\"],\"inLanguage\":\"ko-KR\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/atmokpo.com\/w\/37025\/\",\"url\":\"https:\/\/atmokpo.com\/w\/37025\/\",\"name\":\"Android App Development Course in Kotlin, Creating the Keypad Screen of a Phone App - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#website\"},\"datePublished\":\"2024-11-01T09:54:11+00:00\",\"dateModified\":\"2024-11-01T11:42:33+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/atmokpo.com\/w\/37025\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/atmokpo.com\/w\/37025\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/atmokpo.com\/w\/37025\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\ud648\",\"item\":\"https:\/\/atmokpo.com\/w\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Android App Development Course in Kotlin, Creating the Keypad Screen of a Phone App\"}]},{\"@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":"Android App Development Course in Kotlin, Creating the Keypad Screen of a Phone App - \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\/37025\/","og_locale":"ko_KR","og_type":"article","og_title":"Android App Development Course in Kotlin, Creating the Keypad Screen of a Phone App - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","og_description":"In Android app development, UI\/UX is a very important factor. In this course, we will learn how to implement the keypad screen of a phone app using Kotlin. Through this example, you will learn basic layout construction, button actions, event handling, and UI state management. 1. Project Setup After launching Android Studio, create a new &hellip; \ub354 \ubcf4\uae30 \"Android App Development Course in Kotlin, Creating the Keypad Screen of a Phone App\"","og_url":"https:\/\/atmokpo.com\/w\/37025\/","og_site_name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","article_published_time":"2024-11-01T09:54:11+00:00","article_modified_time":"2024-11-01T11:42:33+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\/37025\/#article","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/37025\/"},"author":{"name":"root","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7"},"headline":"Android App Development Course in Kotlin, Creating the Keypad Screen of a Phone App","datePublished":"2024-11-01T09:54:11+00:00","dateModified":"2024-11-01T11:42:33+00:00","mainEntityOfPage":{"@id":"https:\/\/atmokpo.com\/w\/37025\/"},"wordCount":504,"publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"articleSection":["Kotlin Android app development"],"inLanguage":"ko-KR"},{"@type":"WebPage","@id":"https:\/\/atmokpo.com\/w\/37025\/","url":"https:\/\/atmokpo.com\/w\/37025\/","name":"Android App Development Course in Kotlin, Creating the Keypad Screen of a Phone App - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/#website"},"datePublished":"2024-11-01T09:54:11+00:00","dateModified":"2024-11-01T11:42:33+00:00","breadcrumb":{"@id":"https:\/\/atmokpo.com\/w\/37025\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/atmokpo.com\/w\/37025\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/atmokpo.com\/w\/37025\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\ud648","item":"https:\/\/atmokpo.com\/w\/en\/"},{"@type":"ListItem","position":2,"name":"Android App Development Course in Kotlin, Creating the Keypad Screen of a Phone App"}]},{"@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\/37025","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=37025"}],"version-history":[{"count":1,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/37025\/revisions"}],"predecessor-version":[{"id":37026,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/37025\/revisions\/37026"}],"wp:attachment":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/media?parent=37025"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/categories?post=37025"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/tags?post=37025"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}