{"id":30507,"date":"2024-10-28T03:50:56","date_gmt":"2024-10-28T03:50:56","guid":{"rendered":"http:\/\/atmokpo.com\/w\/?p=30507"},"modified":"2024-11-26T06:48:22","modified_gmt":"2024-11-26T06:48:22","slug":"%ec%bd%94%ed%8b%80%eb%a6%b0-%ec%95%88%eb%93%9c%eb%a1%9c%ec%9d%b4%eb%93%9c-%ec%95%b1%ea%b0%9c%eb%b0%9c-%ea%b0%95%ec%a2%8c-%ec%a0%84%ed%99%94-%ec%95%b1%ec%9d%98-%ed%82%a4%ed%8c%a8%eb%93%9c-%ed%99%94","status":"publish","type":"post","link":"https:\/\/atmokpo.com\/w\/30507\/","title":{"rendered":"\ucf54\ud2c0\ub9b0 \uc548\ub4dc\ub85c\uc774\ub4dc \uc571\uac1c\ubc1c \uac15\uc88c, \uc804\ud654 \uc571\uc758 \ud0a4\ud328\ub4dc \ud654\uba74 \ub9cc\ub4e4\uae30"},"content":{"rendered":"<p><body><\/p>\n<p>\uc548\ub4dc\ub85c\uc774\ub4dc \uc571\uac1c\ubc1c\uc5d0 \uc788\uc5b4 UI\/UX\ub294 \ub9e4\uc6b0 \uc911\uc694\ud55c \uc694\uc18c\uc785\ub2c8\ub2e4. \uc774 \uac15\uc88c\uc5d0\uc11c\ub294 \ucf54\ud2c0\ub9b0\uc744 \ud65c\uc6a9\ud558\uc5ec \uc804\ud654 \uc571\uc758 \ud0a4\ud328\ub4dc \ud654\uba74\uc744 \uad6c\ud604\ud558\ub294 \ubc29\ubc95\uc744 \uc54c\uc544\ubcf4\uaca0\uc2b5\ub2c8\ub2e4. \uc774 \uc608\uc81c\ub97c \ud1b5\ud574 \uae30\ubcf8\uc801\uc778 \ub808\uc774\uc544\uc6c3 \uad6c\uc131, \ubc84\ud2bc \ub3d9\uc791, \uc774\ubca4\ud2b8 \ucc98\ub9ac \ubc0f UI \uc0c1\ud0dc \uad00\ub9ac\ub97c \ubc30\uc6b8 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/p>\n<h2>1. \ud504\ub85c\uc81d\ud2b8 \uc124\uc815<\/h2>\n<p>\uc548\ub4dc\ub85c\uc774\ub4dc \uc2a4\ud29c\ub514\uc624\ub97c \uc2e4\ud589\ud55c \ud6c4 \uc0c8\ub85c\uc6b4 \ud504\ub85c\uc81d\ud2b8\ub97c \uc0dd\uc131\ud569\ub2c8\ub2e4. \uc544\ub798\uc758 \uc124\uc815\uc744 \ub530\ub77c \uc8fc\uc138\uc694:<\/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>\uc774\ud6c4 &#8216;Finish&#8217;\ub97c \ud074\ub9ad\ud558\uc5ec \ud504\ub85c\uc81d\ud2b8\ub97c \uc2dc\uc791\ud569\ub2c8\ub2e4.<\/p>\n<h2>2. \ub808\uc774\uc544\uc6c3 \uc0dd\uc131<\/h2>\n<p>\uc774\uc81c \uc8fc\uc694 XML \ub808\uc774\uc544\uc6c3 \ud30c\uc77c\uc744 \uc218\uc815\ud558\uc5ec \ud0a4\ud328\ub4dc \ud654\uba74\uc744 \ub514\uc790\uc778\ud569\ub2c8\ub2e4. <code>res\/layout\/activity_main.xml<\/code> \ud30c\uc77c\uc744 \uc5f4\uace0 \uc544\ub798\uc758 \ucf54\ub4dc\ub97c \ucd94\uac00\ud569\ub2c8\ub2e4:<\/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>\uc704\uc758 \ucf54\ub4dc\uc5d0\uc11c \uc6b0\ub9ac\ub294 \uac04\ub2e8\ud55c \ud14d\uc2a4\ud2b8 \ubdf0\uc640 \uadf8\ub9ac\ub4dc \ub808\uc774\uc544\uc6c3\uc744 \uc0ac\uc6a9\ud558\uc5ec \ud0a4\ud328\ub4dc\ub97c \ub9cc\ub4e4\uc5c8\uc2b5\ub2c8\ub2e4. \uac01 \ubc84\ud2bc\uc740 0\ubd80\ud130 9\uae4c\uc9c0 \uadf8\ub9ac\uace0 \ubcc4\ud45c(*)\uc640 \uc0f5(#)\uc744 \ud3ec\ud568\ud558\uace0 \uc788\uc2b5\ub2c8\ub2e4. \ub2e4\uc74c\uc73c\ub85c\ub294 \uac01 \ubc84\ud2bc\uc5d0 \ub300\ud55c \ud074\ub9ad \uc774\ubca4\ud2b8\ub97c \uc124\uc815\ud560 \uac83\uc785\ub2c8\ub2e4.<\/p>\n<h2>3. \ubc84\ud2bc \ud074\ub9ad \ub9ac\uc2a4\ub108 \ucd94\uac00<\/h2>\n<p>\uc774\uc81c <code>MainActivity.kt<\/code> \ud30c\uc77c\uc744 \uc5f4\uace0 \ubc84\ud2bc \ud074\ub9ad \ub9ac\uc2a4\ub108\ub97c \ucd94\uac00\ud558\ub3c4\ub85d \ud558\uaca0\uc2b5\ub2c8\ub2e4. \ucf54\ub4dc\ub97c \uc544\ub798\uc640 \uac19\uc774 \uc218\uc815\ud569\ub2c8\ub2e4:<\/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}<\/button><\/button><\/button><\/button><\/button><\/button><\/button><\/button><\/button><\/button><\/button><\/button><\/code><\/pre>\n<p>\uc704\uc758 \ucf54\ub4dc\uc5d0\uc11c\ub294 \uac01 \ubc84\ud2bc\uc5d0 \ub300\ud574 \ud074\ub9ad \ub9ac\uc2a4\ub108\ub97c \uc124\uc815\ud558\uace0, \ubc84\ud2bc\uc744 \ub204\ub97c \ub54c\ub9c8\ub2e4 \ud574\ub2f9 \ubc84\ud2bc\uc758 \uc22b\uc790\uac00 \ud654\uba74\uc5d0 \ucd94\uac00\ub429\ub2c8\ub2e4. <code>onButtonClick<\/code> \uba54\uc11c\ub4dc\ub294 \ub204\ub978 \ubc84\ud2bc\uc758 \ud14d\uc2a4\ud2b8\ub97c \uac00\uc838\uc640 <code>display<\/code> TextView\uc5d0 \ucd94\uac00\ud569\ub2c8\ub2e4.<\/p>\n<h2>4. \uc571 \uc2e4\ud589 \ubc0f \ud14c\uc2a4\ud2b8<\/h2>\n<p>\ucf54\ub4dc\uac00 \uc900\ube44\ub418\uc5c8\uc73c\ub2c8, \uc571\uc744 \uc2e4\ud589\ud558\uc5ec \ud0a4\ud328\ub4dc\uac00 \uc798 \uc791\ub3d9\ud558\ub294\uc9c0 \ud655\uc778\ud574\ubcf4\uaca0\uc2b5\ub2c8\ub2e4. \uc548\ub4dc\ub85c\uc774\ub4dc \uc2a4\ud29c\ub514\uc624\uc5d0\uc11c &#8216;Run&#8217; \ubc84\ud2bc\uc744 \ud074\ub9ad\ud558\uc5ec \uc5d0\ubbac\ub808\uc774\ud130\uc5d0\uc11c \uc2e4\ud589\ud569\ub2c8\ub2e4.<\/p>\n<p>\ub204\uad6c\ub098 \uc27d\uac8c \uc0ac\uc6a9\ud560 \uc218 \uc788\ub3c4\ub85d \ub514\uc790\uc778\ub41c \uc774 \ud0a4\ud328\ub4dc\ub294 \uc0ac\uc6a9\uc790 \uacbd\ud5d8\uc744 \uace0\ub824\ud558\uc5ec \uc124\uacc4\ub418\uc5c8\uc2b5\ub2c8\ub2e4. \uc22b\uc790\ub97c \ud074\ub9ad\ud560 \ub54c\ub9c8\ub2e4 \uc0c1\ub2e8 TextView\uc5d0 \ud574\ub2f9 \uc22b\uc790\uac00 \ud45c\uc2dc\ub429\ub2c8\ub2e4.<\/p>\n<h2>5. \ucd94\uac00 \uae30\ub2a5 \uac1c\ubc1c<\/h2>\n<p>\uc774 \uae30\ubcf8 \ubc84\uc804\uc5d0 \uba87 \uac00\uc9c0 \ucd94\uac00 \uae30\ub2a5\uc744 \ub354\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4. \uc608\ub97c \ub4e4\uc5b4, <strong>\uc804\ud654\ubc88\ud638 \uc9c0\uc6b0\uae30<\/strong>, <strong>\uc804\ud654\uac78\uae30<\/strong> \ubc84\ud2bc\uc744 \ucd94\uac00\ud558\uc5ec \uc2e4\uc81c \uc804\ud654 \uc571\uc5d0 \ub9de\ub3c4\ub85d \ub9cc\ub4e4 \uc218 \uc788\uc2b5\ub2c8\ub2e4. \uc774 \ubd80\ubd84\uc740 \ub2e4\uc74c \ub2e8\uacc4\uc5d0\uc11c \ub2e4\ub8e8\uc5b4\ubcf4\uaca0\uc2b5\ub2c8\ub2e4.<\/p>\n<h3>5.1 \uc804\ud654\ubc88\ud638 \uc9c0\uc6b0\uae30 \ubc84\ud2bc \ucd94\uac00\ud558\uae30<\/h3>\n<p>\uc804\ud654\ubc88\ud638\ub97c \uc9c0\uc6b8 \uc218 \uc788\ub294 \ubc84\ud2bc\uc744 \ucd94\uac00\ud558\uae30 \uc704\ud574 \uc704\uc758 XML \ud30c\uc77c\uc5d0 \uc9c0\uc6b0\uae30 \ubc84\ud2bc\uc744 \ucd94\uac00\ud569\ub2c8\ub2e4:<\/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>\uc774\uc81c \ub2e4\uc2dc <code>MainActivity.kt<\/code>\ub85c \ub3cc\uc544\uac00\uc11c \uc774 \ubc84\ud2bc\uc5d0 \ub300\ud55c \ud074\ub9ad \ub9ac\uc2a4\ub108\ub97c \ucd94\uac00\ud574\ubcf4\uaca0\uc2b5\ub2c8\ub2e4:<\/p>\n<pre><code>val buttonClear = findViewById<button>(R.id.button_clear)\nbuttonClear.setOnClickListener {\n    display.text = \"\"\n}<\/button><\/code><\/pre>\n<h3>5.2 \uc804\ud654 \uac78\uae30 \ubc84\ud2bc \ucd94\uac00\ud558\uae30<\/h3>\n<p>\uc804\ud654 \uac78\uae30 \uae30\ub2a5\uc744 \ucd94\uac00\ud558\uae30 \uc704\ud574 \uc804\ud654 \uac78\uae30 \ubc84\ud2bc\ub3c4 XML \ud30c\uc77c\uc5d0 \ub2e4\uc74c\ucc98\ub7fc \ucd94\uac00\ud574\uc57c \ud569\ub2c8\ub2e4:<\/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>\ub2e4\uc2dc <code>MainActivity.kt<\/code>\ub85c \ub3cc\uc544\uac00\uc11c \uc804\ud654 \uac78\uae30 \ubc84\ud2bc\uc758 \ud074\ub9ad \ub9ac\uc2a4\ub108\ub97c \uc124\uc815\ud569\ub2c8\ub2e4. \uc774 \ubc84\ud2bc \ud074\ub9ad \uc2dc \uc804\ud654\ubc88\ud638\ub97c \uc2e4\uc81c\ub85c \uac78 \uc218 \uc788\ub3c4\ub85d <strong>Permissions<\/strong>\uc744 \ucd94\uac00\ud574\uc57c \ud569\ub2c8\ub2e4. \uba3c\uc800, <code>AndroidManifest.xml<\/code>\uc5d0 \ub2e4\uc74c \uad8c\ud55c\uc744 \ucd94\uac00\ud569\ub2c8\ub2e4:<\/p>\n<pre><code>&lt;uses-permission android:name=\"android.permission.CALL_PHONE\" \/&gt;<\/code><\/pre>\n<p>\uadf8\ub9ac\uace0, <code>button_call<\/code>\uc758 \ud074\ub9ad \ub9ac\uc2a4\ub108\ub97c \ucd94\uac00\ud569\ub2c8\ub2e4:<\/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}<\/button><\/code><\/pre>\n<h2>6. \ub9c8\ubb34\ub9ac<\/h2>\n<p>&#8211; \uc774\uc81c \uae30\ubcf8\uc801\uc778 \ud0a4\ud328\ub4dc \uc571\uc774 \uc644\uc131\ub418\uc5c8\uc2b5\ub2c8\ub2e4. \ucf54\ud2c0\ub9b0\uacfc \uc548\ub4dc\ub85c\uc774\ub4dc\uc5d0\uc11c UI \uad6c\uc131 \uc694\uc18c\ub97c \ud65c\uc6a9\ud558\uc5ec \uac04\ub2e8\ud55c \uc804\ud654 \uc571\uc744 \ub9cc\ub4e4 \uc218 \uc788\uc5c8\uc2b5\ub2c8\ub2e4. \uc774 \uac15\uc88c\ub97c \ud1b5\ud574 \uc548\ub4dc\ub85c\uc774\ub4dc \uc571 \uac1c\ubc1c\uc758 \uae30\ucd08\ub97c \ubc30\uc6e0\uae30\ub97c \ubc14\ub78d\ub2c8\ub2e4.<\/p>\n<p>&#8211; \ucd94\uac00\uc801\uc73c\ub85c \ub2e4\uc591\ud55c \uae30\ub2a5\uc744 \uad6c\ud604\ud574\ubcf4\uba74 \ub354 \ub9ce\uc740 \uacbd\ud5d8\uc744 \uc313\uc744 \uc218 \uc788\uc73c\uba70, \uc2e4\uc81c \uc11c\ube44\uc2a4\uc5d0 \uc0ac\uc6a9\ub420 \uc218 \uc788\ub294 \uc571\uc73c\ub85c \ubc1c\uc804\uc2dc\ud0ac \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/p>\n<p>\uc774 \uac15\uc88c\uac00 \ub3c4\uc6c0\uc774 \ub418\uc5c8\uae38 \ubc14\ub77c\uba70, \uc5ec\ub7ec\ubd84\uc758 \uc548\ub4dc\ub85c\uc774\ub4dc \uac1c\ubc1c \uc5ec\uc815\uc5d0 \uc131\uacf5\uc744 \uae30\uc6d0\ud569\ub2c8\ub2e4!<\/p>\n<p><\/body><\/p>\n","protected":false},"excerpt":{"rendered":"<p>\uc548\ub4dc\ub85c\uc774\ub4dc \uc571\uac1c\ubc1c\uc5d0 \uc788\uc5b4 UI\/UX\ub294 \ub9e4\uc6b0 \uc911\uc694\ud55c \uc694\uc18c\uc785\ub2c8\ub2e4. \uc774 \uac15\uc88c\uc5d0\uc11c\ub294 \ucf54\ud2c0\ub9b0\uc744 \ud65c\uc6a9\ud558\uc5ec \uc804\ud654 \uc571\uc758 \ud0a4\ud328\ub4dc \ud654\uba74\uc744 \uad6c\ud604\ud558\ub294 \ubc29\ubc95\uc744 \uc54c\uc544\ubcf4\uaca0\uc2b5\ub2c8\ub2e4. \uc774 \uc608\uc81c\ub97c \ud1b5\ud574 \uae30\ubcf8\uc801\uc778 \ub808\uc774\uc544\uc6c3 \uad6c\uc131, \ubc84\ud2bc \ub3d9\uc791, \uc774\ubca4\ud2b8 \ucc98\ub9ac \ubc0f UI \uc0c1\ud0dc \uad00\ub9ac\ub97c \ubc30\uc6b8 \uc218 \uc788\uc2b5\ub2c8\ub2e4. 1. \ud504\ub85c\uc81d\ud2b8 \uc124\uc815 \uc548\ub4dc\ub85c\uc774\ub4dc \uc2a4\ud29c\ub514\uc624\ub97c \uc2e4\ud589\ud55c \ud6c4 \uc0c8\ub85c\uc6b4 \ud504\ub85c\uc81d\ud2b8\ub97c \uc0dd\uc131\ud569\ub2c8\ub2e4. \uc544\ub798\uc758 \uc124\uc815\uc744 \ub530\ub77c \uc8fc\uc138\uc694: Application Name: PhoneDialer Language: Kotlin Minimum &hellip; <a href=\"https:\/\/atmokpo.com\/w\/30507\/\" class=\"more-link\">\ub354 \ubcf4\uae30<span class=\"screen-reader-text\"> &#8220;\ucf54\ud2c0\ub9b0 \uc548\ub4dc\ub85c\uc774\ub4dc \uc571\uac1c\ubc1c \uac15\uc88c, \uc804\ud654 \uc571\uc758 \ud0a4\ud328\ub4dc \ud654\uba74 \ub9cc\ub4e4\uae30&#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":[35],"tags":[],"class_list":["post-30507","post","type-post","status-publish","format-standard","hentry","category-35"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.2 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>\ucf54\ud2c0\ub9b0 \uc548\ub4dc\ub85c\uc774\ub4dc \uc571\uac1c\ubc1c \uac15\uc88c, \uc804\ud654 \uc571\uc758 \ud0a4\ud328\ub4dc \ud654\uba74 \ub9cc\ub4e4\uae30 - \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\/30507\/\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"\ucf54\ud2c0\ub9b0 \uc548\ub4dc\ub85c\uc774\ub4dc \uc571\uac1c\ubc1c \uac15\uc88c, \uc804\ud654 \uc571\uc758 \ud0a4\ud328\ub4dc \ud654\uba74 \ub9cc\ub4e4\uae30 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"og:description\" content=\"\uc548\ub4dc\ub85c\uc774\ub4dc \uc571\uac1c\ubc1c\uc5d0 \uc788\uc5b4 UI\/UX\ub294 \ub9e4\uc6b0 \uc911\uc694\ud55c \uc694\uc18c\uc785\ub2c8\ub2e4. \uc774 \uac15\uc88c\uc5d0\uc11c\ub294 \ucf54\ud2c0\ub9b0\uc744 \ud65c\uc6a9\ud558\uc5ec \uc804\ud654 \uc571\uc758 \ud0a4\ud328\ub4dc \ud654\uba74\uc744 \uad6c\ud604\ud558\ub294 \ubc29\ubc95\uc744 \uc54c\uc544\ubcf4\uaca0\uc2b5\ub2c8\ub2e4. \uc774 \uc608\uc81c\ub97c \ud1b5\ud574 \uae30\ubcf8\uc801\uc778 \ub808\uc774\uc544\uc6c3 \uad6c\uc131, \ubc84\ud2bc \ub3d9\uc791, \uc774\ubca4\ud2b8 \ucc98\ub9ac \ubc0f UI \uc0c1\ud0dc \uad00\ub9ac\ub97c \ubc30\uc6b8 \uc218 \uc788\uc2b5\ub2c8\ub2e4. 1. \ud504\ub85c\uc81d\ud2b8 \uc124\uc815 \uc548\ub4dc\ub85c\uc774\ub4dc \uc2a4\ud29c\ub514\uc624\ub97c \uc2e4\ud589\ud55c \ud6c4 \uc0c8\ub85c\uc6b4 \ud504\ub85c\uc81d\ud2b8\ub97c \uc0dd\uc131\ud569\ub2c8\ub2e4. \uc544\ub798\uc758 \uc124\uc815\uc744 \ub530\ub77c \uc8fc\uc138\uc694: Application Name: PhoneDialer Language: Kotlin Minimum &hellip; \ub354 \ubcf4\uae30 &quot;\ucf54\ud2c0\ub9b0 \uc548\ub4dc\ub85c\uc774\ub4dc \uc571\uac1c\ubc1c \uac15\uc88c, \uc804\ud654 \uc571\uc758 \ud0a4\ud328\ub4dc \ud654\uba74 \ub9cc\ub4e4\uae30&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/atmokpo.com\/w\/30507\/\" \/>\n<meta property=\"og:site_name\" content=\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"article:published_time\" content=\"2024-10-28T03:50:56+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-26T06:48:22+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=\"3\ubd84\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/atmokpo.com\/w\/30507\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/30507\/\"},\"author\":{\"name\":\"root\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\"},\"headline\":\"\ucf54\ud2c0\ub9b0 \uc548\ub4dc\ub85c\uc774\ub4dc \uc571\uac1c\ubc1c \uac15\uc88c, \uc804\ud654 \uc571\uc758 \ud0a4\ud328\ub4dc \ud654\uba74 \ub9cc\ub4e4\uae30\",\"datePublished\":\"2024-10-28T03:50:56+00:00\",\"dateModified\":\"2024-11-26T06:48:22+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/atmokpo.com\/w\/30507\/\"},\"wordCount\":25,\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"articleSection\":[\"\ucf54\ud2c0\ub9b0 \uc548\ub4dc\ub85c\uc774\ub4dc\uc571 \uac1c\ubc1c\"],\"inLanguage\":\"ko-KR\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/atmokpo.com\/w\/30507\/\",\"url\":\"https:\/\/atmokpo.com\/w\/30507\/\",\"name\":\"\ucf54\ud2c0\ub9b0 \uc548\ub4dc\ub85c\uc774\ub4dc \uc571\uac1c\ubc1c \uac15\uc88c, \uc804\ud654 \uc571\uc758 \ud0a4\ud328\ub4dc \ud654\uba74 \ub9cc\ub4e4\uae30 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#website\"},\"datePublished\":\"2024-10-28T03:50:56+00:00\",\"dateModified\":\"2024-11-26T06:48:22+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/atmokpo.com\/w\/30507\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/atmokpo.com\/w\/30507\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/atmokpo.com\/w\/30507\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\ud648\",\"item\":\"https:\/\/atmokpo.com\/w\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"\ucf54\ud2c0\ub9b0 \uc548\ub4dc\ub85c\uc774\ub4dc \uc571\uac1c\ubc1c \uac15\uc88c, \uc804\ud654 \uc571\uc758 \ud0a4\ud328\ub4dc \ud654\uba74 \ub9cc\ub4e4\uae30\"}]},{\"@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":"\ucf54\ud2c0\ub9b0 \uc548\ub4dc\ub85c\uc774\ub4dc \uc571\uac1c\ubc1c \uac15\uc88c, \uc804\ud654 \uc571\uc758 \ud0a4\ud328\ub4dc \ud654\uba74 \ub9cc\ub4e4\uae30 - \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\/30507\/","og_locale":"ko_KR","og_type":"article","og_title":"\ucf54\ud2c0\ub9b0 \uc548\ub4dc\ub85c\uc774\ub4dc \uc571\uac1c\ubc1c \uac15\uc88c, \uc804\ud654 \uc571\uc758 \ud0a4\ud328\ub4dc \ud654\uba74 \ub9cc\ub4e4\uae30 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","og_description":"\uc548\ub4dc\ub85c\uc774\ub4dc \uc571\uac1c\ubc1c\uc5d0 \uc788\uc5b4 UI\/UX\ub294 \ub9e4\uc6b0 \uc911\uc694\ud55c \uc694\uc18c\uc785\ub2c8\ub2e4. \uc774 \uac15\uc88c\uc5d0\uc11c\ub294 \ucf54\ud2c0\ub9b0\uc744 \ud65c\uc6a9\ud558\uc5ec \uc804\ud654 \uc571\uc758 \ud0a4\ud328\ub4dc \ud654\uba74\uc744 \uad6c\ud604\ud558\ub294 \ubc29\ubc95\uc744 \uc54c\uc544\ubcf4\uaca0\uc2b5\ub2c8\ub2e4. \uc774 \uc608\uc81c\ub97c \ud1b5\ud574 \uae30\ubcf8\uc801\uc778 \ub808\uc774\uc544\uc6c3 \uad6c\uc131, \ubc84\ud2bc \ub3d9\uc791, \uc774\ubca4\ud2b8 \ucc98\ub9ac \ubc0f UI \uc0c1\ud0dc \uad00\ub9ac\ub97c \ubc30\uc6b8 \uc218 \uc788\uc2b5\ub2c8\ub2e4. 1. \ud504\ub85c\uc81d\ud2b8 \uc124\uc815 \uc548\ub4dc\ub85c\uc774\ub4dc \uc2a4\ud29c\ub514\uc624\ub97c \uc2e4\ud589\ud55c \ud6c4 \uc0c8\ub85c\uc6b4 \ud504\ub85c\uc81d\ud2b8\ub97c \uc0dd\uc131\ud569\ub2c8\ub2e4. \uc544\ub798\uc758 \uc124\uc815\uc744 \ub530\ub77c \uc8fc\uc138\uc694: Application Name: PhoneDialer Language: Kotlin Minimum &hellip; \ub354 \ubcf4\uae30 \"\ucf54\ud2c0\ub9b0 \uc548\ub4dc\ub85c\uc774\ub4dc \uc571\uac1c\ubc1c \uac15\uc88c, \uc804\ud654 \uc571\uc758 \ud0a4\ud328\ub4dc \ud654\uba74 \ub9cc\ub4e4\uae30\"","og_url":"https:\/\/atmokpo.com\/w\/30507\/","og_site_name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","article_published_time":"2024-10-28T03:50:56+00:00","article_modified_time":"2024-11-26T06:48:22+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":"3\ubd84"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/atmokpo.com\/w\/30507\/#article","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/30507\/"},"author":{"name":"root","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7"},"headline":"\ucf54\ud2c0\ub9b0 \uc548\ub4dc\ub85c\uc774\ub4dc \uc571\uac1c\ubc1c \uac15\uc88c, \uc804\ud654 \uc571\uc758 \ud0a4\ud328\ub4dc \ud654\uba74 \ub9cc\ub4e4\uae30","datePublished":"2024-10-28T03:50:56+00:00","dateModified":"2024-11-26T06:48:22+00:00","mainEntityOfPage":{"@id":"https:\/\/atmokpo.com\/w\/30507\/"},"wordCount":25,"publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"articleSection":["\ucf54\ud2c0\ub9b0 \uc548\ub4dc\ub85c\uc774\ub4dc\uc571 \uac1c\ubc1c"],"inLanguage":"ko-KR"},{"@type":"WebPage","@id":"https:\/\/atmokpo.com\/w\/30507\/","url":"https:\/\/atmokpo.com\/w\/30507\/","name":"\ucf54\ud2c0\ub9b0 \uc548\ub4dc\ub85c\uc774\ub4dc \uc571\uac1c\ubc1c \uac15\uc88c, \uc804\ud654 \uc571\uc758 \ud0a4\ud328\ub4dc \ud654\uba74 \ub9cc\ub4e4\uae30 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/#website"},"datePublished":"2024-10-28T03:50:56+00:00","dateModified":"2024-11-26T06:48:22+00:00","breadcrumb":{"@id":"https:\/\/atmokpo.com\/w\/30507\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/atmokpo.com\/w\/30507\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/atmokpo.com\/w\/30507\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\ud648","item":"https:\/\/atmokpo.com\/w\/en\/"},{"@type":"ListItem","position":2,"name":"\ucf54\ud2c0\ub9b0 \uc548\ub4dc\ub85c\uc774\ub4dc \uc571\uac1c\ubc1c \uac15\uc88c, \uc804\ud654 \uc571\uc758 \ud0a4\ud328\ub4dc \ud654\uba74 \ub9cc\ub4e4\uae30"}]},{"@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\/30507","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=30507"}],"version-history":[{"count":1,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/30507\/revisions"}],"predecessor-version":[{"id":30508,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/30507\/revisions\/30508"}],"wp:attachment":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/media?parent=30507"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/categories?post=30507"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/tags?post=30507"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}