{"id":37165,"date":"2024-11-01T09:55:23","date_gmt":"2024-11-01T09:55:23","guid":{"rendered":"http:\/\/atmokpo.com\/w\/?p=37165"},"modified":"2024-11-01T11:36:23","modified_gmt":"2024-11-01T11:36:23","slug":"java-android-app-development-course-creating-the-stopwatch-feature-of-a-clock-app","status":"publish","type":"post","link":"https:\/\/atmokpo.com\/w\/37165\/","title":{"rendered":"Java Android App Development Course, Creating the Stopwatch Feature of a Clock App"},"content":{"rendered":"<p><body><\/p>\n<header>\n<\/header>\n<section>\n<p>\n            For modern smartphone users, a clock app is an indispensable tool.<br \/>\n            Consequently, many developers are creating clock apps and adding various features.<br \/>\n            In this tutorial, we will explore in detail how to implement a stopwatch function while developing an Android app using Java.\n        <\/p>\n<\/section>\n<section>\n<h2>1. Setting Up the Development Environment<\/h2>\n<p>\n            To develop a stopwatch app, you need Android Studio and a Java development environment.<br \/>\n            Follow the steps below to set up the development environment.\n        <\/p>\n<ol>\n<li>\n<strong>Download and Install Android Studio:<\/strong><br \/>\n                Android Studio is the officially supported Android development tool.<br \/>\n                Download the latest version from the [Android Studio Download Page](https:\/\/developer.android.com\/studio) and install it.\n            <\/li>\n<li>\n<strong>Create a New Project:<\/strong><br \/>\n                Launch Android Studio and select &#8220;New Project,&#8221; then choose &#8220;Empty Activity.&#8221;<br \/>\n                Set the project name to &#8220;StopwatchApp&#8221; and select Java.\n            <\/li>\n<li>\n<strong>Gradle Setup:<\/strong><br \/>\n                Use Gradle builds to add the necessary libraries and set the SDK version.<br \/>\n                Set `compileSdkVersion` and `targetSdkVersion` appropriately in the `build.gradle` file.\n            <\/li>\n<\/ol>\n<\/section>\n<section>\n<h2>2. Designing the UI<\/h2>\n<p>\n            Now, let\u2019s design the UI of the stopwatch. In Android, we define layouts using XML.<br \/>\n            Open the `activity_main.xml` file and write the code as shown below.\n        <\/p>\n<pre><code>&lt;?xml version=\"1.0\" encoding=\"utf-8\"?&gt;\n&lt;RelativeLayout xmlns:android=\"http:\/\/schemas.android.com\/apk\/res\/android\"\n    android:layout_width=\"match_parent\"\n    android:layout_height=\"match_parent\"&gt;\n\n    &lt;TextView\n        android:id=\"@+id\/txtTimer\"\n        android:layout_width=\"wrap_content\"\n        android:layout_height=\"wrap_content\"\n        android:text=\"00:00:00\"\n        android:textSize=\"48sp\"\n        android:layout_centerInParent=\"true\"\/&gt;\n\n    &lt;Button\n        android:id=\"@+id\/btnStart\"\n        android:layout_width=\"wrap_content\"\n        android:layout_height=\"wrap_content\"\n        android:text=\"Start\"\n        android:layout_below=\"@id\/txtTimer\"\n        android:layout_marginTop=\"20dp\"\n        android:layout_alignParentStart=\"true\"\/&gt;\n\n    &lt;Button\n        android:id=\"@+id\/btnStop\"\n        android:layout_width=\"wrap_content\"\n        android:layout_height=\"wrap_content\"\n        android:text=\"Stop\"\n        android:layout_below=\"@id\/txtTimer\"\n        android:layout_marginTop=\"20dp\"\n        android:layout_toEndOf=\"@id\/btnStart\"\n        android:layout_marginStart=\"20dp\"\/&gt;\n\n    &lt;Button\n        android:id=\"@+id\/btnReset\"\n        android:layout_width=\"wrap_content\"\n        android:layout_height=\"wrap_content\"\n        android:text=\"Reset\"\n        android:layout_below=\"@id\/txtTimer\"\n        android:layout_marginTop=\"20dp\"\n        android:layout_toEndOf=\"@id\/btnStop\"\n        android:layout_marginStart=\"20dp\"\/&gt;\n\n&lt;\/RelativeLayout&gt;<\/code><\/pre>\n<p>\n            The UI includes a `TextView` that displays the time in the center and three buttons (Start, Stop, Reset).<br \/>\n            These buttons control the stopwatch&#8217;s functionality.\n        <\/p>\n<\/section>\n<section>\n<h2>3. Implementing Stopwatch Functionality<\/h2>\n<p>\n            Now that the UI is ready, it&#8217;s time to implement the watch functionality.<br \/>\n            Open the `MainActivity.java` file and write the code as follows.\n        <\/p>\n<pre><code>package com.example.stopwatchapp;\n\nimport android.os.Bundle;\nimport android.os.SystemClock;\nimport android.view.View;\nimport android.widget.Button;\nimport android.widget.TextView;\nimport androidx.appcompat.app.AppCompatActivity;\n\npublic class MainActivity extends AppCompatActivity {\n    private TextView txtTimer;\n    private Button btnStart, btnStop, btnReset;\n    private long startTime = 0L;\n    private boolean isRunning = false;\n    private final Handler handler = new Handler();\n    \n    @Override\n    protected void onCreate(Bundle savedInstanceState) {\n        super.onCreate(savedInstanceState);\n        setContentView(R.layout.activity_main);\n        \n        txtTimer = findViewById(R.id.txtTimer);\n        btnStart = findViewById(R.id.btnStart);\n        btnStop = findViewById(R.id.btnStop);\n        btnReset = findViewById(R.id.btnReset);\n        \n        btnStart.setOnClickListener(new View.OnClickListener() {\n            @Override\n            public void onClick(View v) {\n                if (!isRunning) {\n                    startTime = SystemClock.elapsedRealtime();\n                    handler.postDelayed(runnable, 0);\n                    isRunning = true;\n                }\n            }\n        });\n\n        btnStop.setOnClickListener(new View.OnClickListener() {\n            @Override\n            public void onClick(View v) {\n                if (isRunning) {\n                    handler.removeCallbacks(runnable);\n                    isRunning = false;\n                }\n            }\n        });\n\n        btnReset.setOnClickListener(new View.OnClickListener() {\n            @Override\n            public void onClick(View v) {\n                handler.removeCallbacks(runnable);\n                txtTimer.setText(\"00:00:00\");\n                isRunning = false;\n            }\n        });\n    }\n\n    private final Runnable runnable = new Runnable() {\n        @Override\n        public void run() {\n            long elapsedMillis = SystemClock.elapsedRealtime() - startTime;\n            int seconds = (int) (elapsedMillis \/ 1000);\n            int minutes = seconds \/ 60;\n            seconds = seconds % 60;\n            int hours = minutes \/ 60;\n            minutes = minutes % 60;\n\n            txtTimer.setText(String.format(\"%02d:%02d:%02d\", hours, minutes, seconds));\n            handler.postDelayed(this, 1000);\n        }\n    };\n}<\/code><\/pre>\n<p>\n            The above code contains the basic functionality of the stopwatch.<br \/>\n            It uses a `Handler` to periodically update the elapsed time.\n        <\/p>\n<ul>\n<li>\n<strong>Start Button:<\/strong> Starts the stopwatch and begins counting time.\n            <\/li>\n<li>\n<strong>Stop Button:<\/strong> Stops the stopwatch and retains the current time.\n            <\/li>\n<li>\n<strong>Reset Button:<\/strong> Resets the stopwatch and displays the time as &#8220;00:00:00&#8221;.\n            <\/li>\n<\/ul>\n<\/section>\n<section>\n<h2>4. Testing the App<\/h2>\n<p>\n            Now it&#8217;s time to test the stopwatch app. Click the &#8220;Run&#8221; button in Android Studio to<br \/>\n            launch the app in the emulator. Click the buttons to verify that the stopwatch functionality works correctly.<br \/>\n            It is important to test various scenarios to ensure all features operate seamlessly.\n        <\/p>\n<\/section>\n<section>\n<h2>5. Implementing Additional Features<\/h2>\n<p>\n            In addition to the basic stopwatch functionality, you might consider adding extra features to enhance the user experience.<br \/>\n            For example, think about adding lap functionality, notification sounds, or user settings.\n        <\/p>\n<ol>\n<li>\n<strong>Lap Functionality:<\/strong><br \/>\n                Add a feature that allows users to record elapsed times for multiple laps.\n            <\/li>\n<li>\n<strong>Sound Notifications:<\/strong><br \/>\n                Provide feedback by sounding alerts when users start and stop the stopwatch.\n            <\/li>\n<li>\n<strong>Theme Settings:<\/strong><br \/>\n                Offer users the option to change the colors or fonts of the app.\n            <\/li>\n<\/ol>\n<p>\n            These features can improve the quality of the app and enhance user satisfaction.\n        <\/p>\n<\/section>\n<section>\n<h2>6. Conclusion<\/h2>\n<p>\n            In this tutorial, you learned how to develop an Android stopwatch app using Java. I hope that setting up the development environment,<br \/>\n            designing the UI, and implementing functionality provided a foundation in Android app development.<br \/>\n            I encourage you to add more features or continue to evolve your app in your own style.\n        <\/p>\n<\/section>\n<footer>\n<p>\u00a9 2023 Java Android App Development Course, All Rights Reserved.<\/p>\n<\/footer>\n<p><\/body><\/p>\n","protected":false},"excerpt":{"rendered":"<p>For modern smartphone users, a clock app is an indispensable tool. Consequently, many developers are creating clock apps and adding various features. In this tutorial, we will explore in detail how to implement a stopwatch function while developing an Android app using Java. 1. Setting Up the Development Environment To develop a stopwatch app, you &hellip; <a href=\"https:\/\/atmokpo.com\/w\/37165\/\" class=\"more-link\">\ub354 \ubcf4\uae30<span class=\"screen-reader-text\"> &#8220;Java Android App Development Course, Creating the Stopwatch Feature of a Clock 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":[137],"tags":[],"class_list":["post-37165","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, Creating the Stopwatch Feature of a Clock 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\/37165\/\" \/>\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, Creating the Stopwatch Feature of a Clock App - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"og:description\" content=\"For modern smartphone users, a clock app is an indispensable tool. Consequently, many developers are creating clock apps and adding various features. In this tutorial, we will explore in detail how to implement a stopwatch function while developing an Android app using Java. 1. Setting Up the Development Environment To develop a stopwatch app, you &hellip; \ub354 \ubcf4\uae30 &quot;Java Android App Development Course, Creating the Stopwatch Feature of a Clock App&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/atmokpo.com\/w\/37165\/\" \/>\n<meta property=\"og:site_name\" content=\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"article:published_time\" content=\"2024-11-01T09:55:23+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-01T11:36:23+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\/37165\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/37165\/\"},\"author\":{\"name\":\"root\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\"},\"headline\":\"Java Android App Development Course, Creating the Stopwatch Feature of a Clock App\",\"datePublished\":\"2024-11-01T09:55:23+00:00\",\"dateModified\":\"2024-11-01T11:36:23+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/atmokpo.com\/w\/37165\/\"},\"wordCount\":501,\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"articleSection\":[\"Java Android app development\"],\"inLanguage\":\"ko-KR\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/atmokpo.com\/w\/37165\/\",\"url\":\"https:\/\/atmokpo.com\/w\/37165\/\",\"name\":\"Java Android App Development Course, Creating the Stopwatch Feature of a Clock App - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#website\"},\"datePublished\":\"2024-11-01T09:55:23+00:00\",\"dateModified\":\"2024-11-01T11:36:23+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/atmokpo.com\/w\/37165\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/atmokpo.com\/w\/37165\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/atmokpo.com\/w\/37165\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\ud648\",\"item\":\"https:\/\/atmokpo.com\/w\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Java Android App Development Course, Creating the Stopwatch Feature of a Clock 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":"Java Android App Development Course, Creating the Stopwatch Feature of a Clock 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\/37165\/","og_locale":"ko_KR","og_type":"article","og_title":"Java Android App Development Course, Creating the Stopwatch Feature of a Clock App - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","og_description":"For modern smartphone users, a clock app is an indispensable tool. Consequently, many developers are creating clock apps and adding various features. In this tutorial, we will explore in detail how to implement a stopwatch function while developing an Android app using Java. 1. Setting Up the Development Environment To develop a stopwatch app, you &hellip; \ub354 \ubcf4\uae30 \"Java Android App Development Course, Creating the Stopwatch Feature of a Clock App\"","og_url":"https:\/\/atmokpo.com\/w\/37165\/","og_site_name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","article_published_time":"2024-11-01T09:55:23+00:00","article_modified_time":"2024-11-01T11:36:23+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\/37165\/#article","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/37165\/"},"author":{"name":"root","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7"},"headline":"Java Android App Development Course, Creating the Stopwatch Feature of a Clock App","datePublished":"2024-11-01T09:55:23+00:00","dateModified":"2024-11-01T11:36:23+00:00","mainEntityOfPage":{"@id":"https:\/\/atmokpo.com\/w\/37165\/"},"wordCount":501,"publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"articleSection":["Java Android app development"],"inLanguage":"ko-KR"},{"@type":"WebPage","@id":"https:\/\/atmokpo.com\/w\/37165\/","url":"https:\/\/atmokpo.com\/w\/37165\/","name":"Java Android App Development Course, Creating the Stopwatch Feature of a Clock App - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/#website"},"datePublished":"2024-11-01T09:55:23+00:00","dateModified":"2024-11-01T11:36:23+00:00","breadcrumb":{"@id":"https:\/\/atmokpo.com\/w\/37165\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/atmokpo.com\/w\/37165\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/atmokpo.com\/w\/37165\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\ud648","item":"https:\/\/atmokpo.com\/w\/en\/"},{"@type":"ListItem","position":2,"name":"Java Android App Development Course, Creating the Stopwatch Feature of a Clock 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\/37165","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=37165"}],"version-history":[{"count":1,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/37165\/revisions"}],"predecessor-version":[{"id":37166,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/37165\/revisions\/37166"}],"wp:attachment":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/media?parent=37165"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/categories?post=37165"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/tags?post=37165"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}