{"id":1273,"date":"2025-05-14T05:52:47","date_gmt":"2025-05-13T20:52:47","guid":{"rendered":"https:\/\/itstudy365.com\/blog\/?p=1273"},"modified":"2025-05-26T18:00:45","modified_gmt":"2025-05-26T09:00:45","slug":"android-application-development-%e7%ac%ac14%e7%ab%a0%ef%bc%9aadapter%e3%83%91%e3%82%bf%e3%83%bc%e3%83%b3%e3%81%ae%e5%be%a9%e7%bf%92%e3%81%a8android%e3%81%a7%e3%81%ae%e5%ae%9f%e8%a3%85","status":"publish","type":"post","link":"https:\/\/itstudy365.com\/blog\/2025\/05\/14\/android-application-development-%e7%ac%ac14%e7%ab%a0%ef%bc%9aadapter%e3%83%91%e3%82%bf%e3%83%bc%e3%83%b3%e3%81%ae%e5%be%a9%e7%bf%92%e3%81%a8android%e3%81%a7%e3%81%ae%e5%ae%9f%e8%a3%85\/","title":{"rendered":"Android application development \u7b2c14\u7ae0\uff1aAdapter\u30d1\u30bf\u30fc\u30f3\u306e\u5fa9\u7fd2\u3068Android\u3067\u306e\u5b9f\u88c5"},"content":{"rendered":"\n<button id=\"bb1\" type=\"button\" value=\"Play\" class=\"responsivevoice-button\" title=\"ResponsiveVoice Tap to Start\/Stop Speech\"><span>&#128266; Play<\/span><\/button>\n        <script>\n            bb1.onclick = function(){\n                if(responsiveVoice.isPlaying()){\n                    responsiveVoice.cancel();\n                }else{\n                    responsiveVoice.speak(\"\ud83e\udde9 Adapter\u30d1\u30bf\u30fc\u30f3\u306e\u5fa9\u7fd2\uff08Java\u7de8\uff09 \u25a0 Adapter\u30d1\u30bf\u30fc\u30f3\u3068\u306f\uff1f \u300c\u65e2\u5b58\u306e\u30af\u30e9\u30b9\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30fc\u30b9\u3092\u3001\u5225\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30fc\u30b9\u306b\u5909\u63db\u3059\u308b\u300d\u30c7\u30b6\u30a4\u30f3\u30d1\u30bf\u30fc\u30f3\u3067\u3059\u3002\u3064\u307e\u308a\u3001**\u4e92\u63db\u6027\u306e\u306a\u3044\u30af\u30e9\u30b9\u540c\u58eb\u3092\u3064\u306a\u3050\u201c\u6a4b\u6e21\u3057\u201d**\u3092\u3059\u308b\u306e\u304c\u76ee\u7684\u3067\u3059\u3002 \u25a0 Java\u3067\u306e\u4f8b \/\/ \u65e2\u5b58\u306e\u30af\u30e9\u30b9\uff08\u5909\u66f4\u3067\u304d\u306a\u3044\uff09 class OldPrinter { void printText(String text) { System.out.println(\\\"\u5370\u5237: \\\" + text); } } \/\/ \u4f7f\u3044\u305f\u3044\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30fc\u30b9 interface NewPrinter { void print(String message); } \/\/ Adapter\u30af\u30e9\u30b9 class PrinterAdapter implements NewPrinter { private OldPrinter oldPrinter; public PrinterAdapter(OldPrinter oldPrinter) { this.oldPrinter = oldPrinter; } @Override public void print(String message) { oldPrinter.printText(message); \/\/ \u4e92\u63db\u6027\u306e\u3042\u308b\u547c\u3073\u51fa\u3057\u306b\u5909\u63db } } Adapter\u306f\u3042\u304f\u307e\u3067\u201c\u5909\u63db\u4fc2\u201d\u3002\u4f7f\u3044\u305f\u3044\u5f62\u306b\u300c\u5408\u308f\u305b\u308b\u300d\u3053\u3068\u3067\u518d\u5229\u7528\u6027\u3092\u9ad8\u3081\u307e\u3059\u3002 \ud83d\udcf1 Android\u306b\u304a\u3051\u308b Adapter \u306e\u5f79\u5272 Android\u3067\u306f\u3001ListView \u3084 RecyclerView \u306b\u30c7\u30fc\u30bf\u3092\u8868\u793a\u3059\u308b\u6642\u306b\u3001\u5fc5\u305a Adapter \u3092\u4f7f\u3044\u307e\u3059\u3002\u306a\u305c\u306a\u3089\uff1a **\u30c7\u30fc\u30bf\uff08List\u306a\u3069\uff09**\u306f\u30d7\u30ed\u30b0\u30e9\u30e0\u4e0a\u306b\u5b58\u5728\u3059\u308b **UI\uff08View\uff09**\u306f\u753b\u9762\u306b\u63cf\u753b\u3055\u308c\u308b \ud83d\udc49 \u305d\u306e \u300c\u30c7\u30fc\u30bf \u2192 UI\u300d\u3078\u306e\u6a4b\u6e21\u3057\u304c\u3001Android\u306b\u304a\u3051\u308b Adapter \u306e\u5f79\u5272\u3067\u3059\u3002 \ud83c\udfa8 Android\u306eAdapter \u5b9f\u88c5\u4f8b\uff08ListView\uff09 \u305f\u3068\u3048\u3070\u3001\u4ee5\u4e0b\u306e\u3088\u3046\u306a\u30ea\u30b9\u30c8\u3092\u8868\u793a\u3057\u305f\u3044\u3068\u3057\u307e\u3059\uff1a Listless thanStringgreater than items = Arrays.asList(\\\"\u308a\u3093\u3054\\\", \\\"\u30d0\u30ca\u30ca\\\", \\\"\u307f\u304b\u3093\\\"); \u25a0 ArrayAdapter \u3092\u4f7f\u3046\u4f8b ListView listView = findViewById(R.id.listView); ArrayAdapterless thanStringgreater than adapter = new ArrayAdapterless thangreater than( this, android.R.layout.simple_list_item_1, items ); listView.setAdapter(adapter); items: \u30c7\u30fc\u30bf\u306e\u30ea\u30b9\u30c8 simple_list_item_1: 1\u884c\u306e\u30ec\u30a4\u30a2\u30a6\u30c8 ArrayAdapter: \u30c7\u30fc\u30bf\u30921\u884c\u306e\u30c6\u30ad\u30b9\u30c8\u306b\u5909\u63db\u3059\u308b\u5909\u63db\u5668\uff08\uff1dAdapter\uff09 ArrayAdapter \u306f\u7c21\u6613\u7248\u3002\u8907\u96d1\u306a\u30c7\u30fc\u30bf\u8868\u793a\u306b\u306f RecyclerView.Adapter \u3092\u4f7f\u3044\u307e\u3059\u3002 \ud83d\udd01 RecyclerView.Adapter \u306e\u5b9f\u88c5\uff08\u3088\u308a\u73fe\u4ee3\u7684\uff09 RecyclerView \u306f\u3088\u308a\u9ad8\u901f\u3067\u67d4\u8edf\u306a\u30ea\u30b9\u30c8\u8868\u793a\u30b3\u30f3\u30dd\u30fc\u30cd\u30f3\u30c8\u3067\u3001Adapter\u306e\u5b9f\u88c5\u304c\u5fc5\u9808\u3067\u3059\u3002 public class MyAdapter extends RecyclerView.Adapterless thanMyAdapter.ViewHoldergreater than { private Listless thanStringgreater than dataList; public MyAdapter(Listless thanStringgreater than list) { this.dataList = list; } \/\/ 1. \u8868\u793a\u7528\u306eView\u3092\u751f\u6210 @NonNull @Override public ViewHolder onCreateViewHolder(ViewGroup parent, int viewType) { View view = LayoutInflater.from(parent.getContext()) .inflate(android.R.layout.simple_list_item_1, parent, false); return new ViewHolder(view); } \/\/ 2. View\u306b\u30c7\u30fc\u30bf\u3092\u30d0\u30a4\u30f3\u30c9 @Override public void onBindViewHolder(ViewHolder holder, int position) { holder.textView.setText(dataList.get(position)); } \/\/ 3. \u30a2\u30a4\u30c6\u30e0\u6570\u3092\u8fd4\u3059 @Override public int getItemCount() { return dataList.size(); } \/\/ ViewHolder\u306e\u5b9a\u7fa9 public static class ViewHolder extends RecyclerView.ViewHolder { public TextView textView; public ViewHolder(View itemView) { super(itemView); textView = itemView.findViewById(android.R.id.text1); } } } \ud83d\udca1 Adapter\u5b9f\u88c5\u306e\u30dd\u30a4\u30f3\u30c8\u307e\u3068\u3081 \u9805\u76ee\u8aac\u660eAdapter\u30c7\u30fc\u30bf\u3068\u8868\u793a\u3092\u3064\u306a\u3050\u6a4b\u6e21\u3057ViewHolder\u5404\u884c\u306eView\u306e\u4fdd\u6301\u8005\uff08findViewById\u3092\u6bce\u56de\u3057\u306a\u3044\u305f\u3081\u306e\u6700\u9069\u5316\uff09onCreateViewHolder()\u5404\u30a2\u30a4\u30c6\u30e0\u306eView\u751f\u6210onBindViewHolder()\u5404\u30a2\u30a4\u30c6\u30e0\u3078\u306e\u30c7\u30fc\u30bf\u30d0\u30a4\u30f3\u30c9getItemCount()\u30a2\u30a4\u30c6\u30e0\u6570\u306e\u53d6\u5f97 \ud83d\udd1a \u307e\u3068\u3081 Java\u306eAdapter\u30d1\u30bf\u30fc\u30f3\u3068\u540c\u69d8\u3001Android\u3067\u3082\u300c\u5f62\u5f0f\u306e\u5909\u63db\u300d\u3068\u300c\u4ef2\u4ecb\u5f79\u300d\u304c\u30ad\u30fc\u30ef\u30fc\u30c9\u3002 Android\u306eAdapter\u306f\u3001\u300c\u30c7\u30fc\u30bf\uff08List\u306a\u3069\uff09\u300d\u3068\u300cView\uff08UI\u90e8\u54c1\uff09\u300d\u306e\u63a5\u7740\u5264\u306e\u3088\u3046\u306a\u5f79\u5272\u3092\u6301\u3064\u3002 ListView \u3067\u306f ArrayAdapter \u3092\u3001\u3088\u308a\u67d4\u8edf\u306a RecyclerView \u3067\u306f\u72ec\u81ea\u306e Adapter \u3092\u5b9f\u88c5\u3002\", \"Japanese Female\");\n                }\n            };\n        <\/script>\n    <\/p>\n\n\n\n<h2 class=\"wp-block-heading\">\ud83e\udde9 <strong>Adapter\u30d1\u30bf\u30fc\u30f3\u306e\u5fa9\u7fd2\uff08Java\u7de8\uff09<\/strong><\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">\u25a0 Adapter\u30d1\u30bf\u30fc\u30f3\u3068\u306f\uff1f<\/h3>\n\n\n\n<p><strong>\u300c\u65e2\u5b58\u306e\u30af\u30e9\u30b9\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30fc\u30b9\u3092\u3001\u5225\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30fc\u30b9\u306b\u5909\u63db\u3059\u308b\u300d\u30c7\u30b6\u30a4\u30f3\u30d1\u30bf\u30fc\u30f3<\/strong>\u3067\u3059\u3002<br>\u3064\u307e\u308a\u3001**\u4e92\u63db\u6027\u306e\u306a\u3044\u30af\u30e9\u30b9\u540c\u58eb\u3092\u3064\u306a\u3050\u201c\u6a4b\u6e21\u3057\u201d**\u3092\u3059\u308b\u306e\u304c\u76ee\u7684\u3067\u3059\u3002<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h3 class=\"wp-block-heading\">\u25a0 Java\u3067\u306e\u4f8b<\/h3>\n\n\n\n<div class=\"hcb_wrap\"><pre class=\"prism line-numbers lang-csharp\" data-lang=\"C#\" data-show-lang=\"0\"><code>\/\/ \u65e2\u5b58\u306e\u30af\u30e9\u30b9\uff08\u5909\u66f4\u3067\u304d\u306a\u3044\uff09\nclass OldPrinter {\n    void printText(String text) {\n        System.out.println(&quot;\u5370\u5237: &quot; + text);\n    }\n}\n\n\/\/ \u4f7f\u3044\u305f\u3044\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30fc\u30b9\ninterface NewPrinter {\n    void print(String message);\n}\n\n\/\/ Adapter\u30af\u30e9\u30b9\nclass PrinterAdapter implements NewPrinter {\n    private OldPrinter oldPrinter;\n\n    public PrinterAdapter(OldPrinter oldPrinter) {\n        this.oldPrinter = oldPrinter;\n    }\n\n    @Override\n    public void print(String message) {\n        oldPrinter.printText(message); \/\/ \u4e92\u63db\u6027\u306e\u3042\u308b\u547c\u3073\u51fa\u3057\u306b\u5909\u63db\n    }\n}<\/code><\/pre><\/div>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>Adapter\u306f\u3042\u304f\u307e\u3067\u201c\u5909\u63db\u4fc2\u201d\u3002\u4f7f\u3044\u305f\u3044\u5f62\u306b\u300c\u5408\u308f\u305b\u308b\u300d\u3053\u3068\u3067\u518d\u5229\u7528\u6027\u3092\u9ad8\u3081\u307e\u3059\u3002<\/p>\n<\/blockquote>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">\ud83d\udcf1 <strong>Android\u306b\u304a\u3051\u308b Adapter \u306e\u5f79\u5272<\/strong><\/h2>\n\n\n\n<p>Android\u3067\u306f\u3001<strong><code>ListView<\/code> \u3084 <code>RecyclerView<\/code> \u306b\u30c7\u30fc\u30bf\u3092\u8868\u793a\u3059\u308b\u6642<\/strong>\u306b\u3001\u5fc5\u305a Adapter \u3092\u4f7f\u3044\u307e\u3059\u3002<br>\u306a\u305c\u306a\u3089\uff1a<\/p>\n\n\n\n<ul>\n<li>**\u30c7\u30fc\u30bf\uff08List\u306a\u3069\uff09**\u306f\u30d7\u30ed\u30b0\u30e9\u30e0\u4e0a\u306b\u5b58\u5728\u3059\u308b<\/li>\n\n\n\n<li>**UI\uff08View\uff09**\u306f\u753b\u9762\u306b\u63cf\u753b\u3055\u308c\u308b<\/li>\n<\/ul>\n\n\n\n<p>\ud83d\udc49 \u305d\u306e <strong>\u300c\u30c7\u30fc\u30bf \u2192 UI\u300d\u3078\u306e\u6a4b\u6e21\u3057<\/strong>\u304c\u3001Android\u306b\u304a\u3051\u308b <code>Adapter<\/code> \u306e\u5f79\u5272\u3067\u3059\u3002<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">\ud83c\udfa8 Android\u306eAdapter \u5b9f\u88c5\u4f8b\uff08<code>ListView<\/code>\uff09<\/h2>\n\n\n\n<p>\u305f\u3068\u3048\u3070\u3001\u4ee5\u4e0b\u306e\u3088\u3046\u306a\u30ea\u30b9\u30c8\u3092\u8868\u793a\u3057\u305f\u3044\u3068\u3057\u307e\u3059\uff1a<\/p>\n\n\n\n<div class=\"hcb_wrap\"><pre class=\"prism line-numbers lang-csharp\" data-lang=\"C#\" data-show-lang=\"0\"><code>List&lt;String&gt; items = Arrays.asList(&quot;\u308a\u3093\u3054&quot;, &quot;\u30d0\u30ca\u30ca&quot;, &quot;\u307f\u304b\u3093&quot;);<\/code><\/pre><\/div>\n\n\n\n<h3 class=\"wp-block-heading\">\u25a0 ArrayAdapter \u3092\u4f7f\u3046\u4f8b<\/h3>\n\n\n\n<div class=\"hcb_wrap\"><pre class=\"prism line-numbers lang-csharp\" data-lang=\"C#\" data-show-lang=\"0\"><code>ListView listView = findViewById(R.id.listView);\n\nArrayAdapter&lt;String&gt; adapter = new ArrayAdapter&lt;&gt;(\n    this,\n    android.R.layout.simple_list_item_1,\n    items\n);\n\nlistView.setAdapter(adapter);<\/code><\/pre><\/div>\n\n\n\n<ul>\n<li><code>items<\/code>: \u30c7\u30fc\u30bf\u306e\u30ea\u30b9\u30c8<\/li>\n\n\n\n<li><code>simple_list_item_1<\/code>: 1\u884c\u306e\u30ec\u30a4\u30a2\u30a6\u30c8<\/li>\n\n\n\n<li><code>ArrayAdapter<\/code>: \u30c7\u30fc\u30bf\u30921\u884c\u306e\u30c6\u30ad\u30b9\u30c8\u306b\u5909\u63db\u3059\u308b\u5909\u63db\u5668\uff08\uff1dAdapter\uff09<\/li>\n<\/ul>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p><code>ArrayAdapter<\/code> \u306f\u7c21\u6613\u7248\u3002\u8907\u96d1\u306a\u30c7\u30fc\u30bf\u8868\u793a\u306b\u306f <code>RecyclerView.Adapter<\/code> \u3092\u4f7f\u3044\u307e\u3059\u3002<\/p>\n<\/blockquote>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">\ud83d\udd01 <code>RecyclerView.Adapter<\/code> \u306e\u5b9f\u88c5\uff08\u3088\u308a\u73fe\u4ee3\u7684\uff09<\/h2>\n\n\n\n<p>RecyclerView \u306f\u3088\u308a\u9ad8\u901f\u3067\u67d4\u8edf\u306a\u30ea\u30b9\u30c8\u8868\u793a\u30b3\u30f3\u30dd\u30fc\u30cd\u30f3\u30c8\u3067\u3001<strong>Adapter\u306e\u5b9f\u88c5\u304c\u5fc5\u9808<\/strong>\u3067\u3059\u3002<\/p>\n\n\n\n<div class=\"hcb_wrap\"><pre class=\"prism line-numbers lang-csharp\" data-lang=\"C#\" data-show-lang=\"0\"><code>public class MyAdapter extends RecyclerView.Adapter&lt;MyAdapter.ViewHolder&gt; {\n    private List&lt;String&gt; dataList;\n\n    public MyAdapter(List&lt;String&gt; list) {\n        this.dataList = list;\n    }\n\n    \/\/ 1. \u8868\u793a\u7528\u306eView\u3092\u751f\u6210\n    @NonNull\n    @Override\n    public ViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {\n        View view = LayoutInflater.from(parent.getContext())\n                     .inflate(android.R.layout.simple_list_item_1, parent, false);\n        return new ViewHolder(view);\n    }\n\n    \/\/ 2. View\u306b\u30c7\u30fc\u30bf\u3092\u30d0\u30a4\u30f3\u30c9\n    @Override\n    public void onBindViewHolder(ViewHolder holder, int position) {\n        holder.textView.setText(dataList.get(position));\n    }\n\n    \/\/ 3. \u30a2\u30a4\u30c6\u30e0\u6570\u3092\u8fd4\u3059\n    @Override\n    public int getItemCount() {\n        return dataList.size();\n    }\n\n    \/\/ ViewHolder\u306e\u5b9a\u7fa9\n    public static class ViewHolder extends RecyclerView.ViewHolder {\n        public TextView textView;\n        public ViewHolder(View itemView) {\n            super(itemView);\n            textView = itemView.findViewById(android.R.id.text1);\n        }\n    }\n}<\/code><\/pre><\/div>\n\n\n\n<h2 class=\"wp-block-heading\">\ud83d\udca1 Adapter\u5b9f\u88c5\u306e\u30dd\u30a4\u30f3\u30c8\u307e\u3068\u3081<\/h2>\n\n\n\n<figure class=\"wp-block-table\"><table><thead><tr><th>\u9805\u76ee<\/th><th>\u8aac\u660e<\/th><\/tr><\/thead><tbody><tr><td><code>Adapter<\/code><\/td><td>\u30c7\u30fc\u30bf\u3068\u8868\u793a\u3092\u3064\u306a\u3050\u6a4b\u6e21\u3057<\/td><\/tr><tr><td><code>ViewHolder<\/code><\/td><td>\u5404\u884c\u306eView\u306e\u4fdd\u6301\u8005\uff08findViewById\u3092\u6bce\u56de\u3057\u306a\u3044\u305f\u3081\u306e\u6700\u9069\u5316\uff09<\/td><\/tr><tr><td><code>onCreateViewHolder()<\/code><\/td><td>\u5404\u30a2\u30a4\u30c6\u30e0\u306eView\u751f\u6210<\/td><\/tr><tr><td><code>onBindViewHolder()<\/code><\/td><td>\u5404\u30a2\u30a4\u30c6\u30e0\u3078\u306e\u30c7\u30fc\u30bf\u30d0\u30a4\u30f3\u30c9<\/td><\/tr><tr><td><code>getItemCount()<\/code><\/td><td>\u30a2\u30a4\u30c6\u30e0\u6570\u306e\u53d6\u5f97<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">\ud83d\udd1a \u307e\u3068\u3081<\/h2>\n\n\n\n<ul>\n<li>Java\u306eAdapter\u30d1\u30bf\u30fc\u30f3\u3068\u540c\u69d8\u3001Android\u3067\u3082\u300c\u5f62\u5f0f\u306e\u5909\u63db\u300d\u3068\u300c\u4ef2\u4ecb\u5f79\u300d\u304c\u30ad\u30fc\u30ef\u30fc\u30c9\u3002<\/li>\n\n\n\n<li>Android\u306eAdapter\u306f\u3001\u300c\u30c7\u30fc\u30bf\uff08List\u306a\u3069\uff09\u300d\u3068\u300cView\uff08UI\u90e8\u54c1\uff09\u300d\u306e<strong>\u63a5\u7740\u5264<\/strong>\u306e\u3088\u3046\u306a\u5f79\u5272\u3092\u6301\u3064\u3002<\/li>\n\n\n\n<li><code>ListView<\/code> \u3067\u306f <code>ArrayAdapter<\/code> \u3092\u3001\u3088\u308a\u67d4\u8edf\u306a <code>RecyclerView<\/code> \u3067\u306f\u72ec\u81ea\u306e <code>Adapter<\/code> \u3092\u5b9f\u88c5\u3002<\/li>\n<\/ul>\n\n\n\n<p>\n","protected":false},"excerpt":{"rendered":"","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[2],"tags":[54],"_links":{"self":[{"href":"https:\/\/itstudy365.com\/blog\/wp-json\/wp\/v2\/posts\/1273"}],"collection":[{"href":"https:\/\/itstudy365.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/itstudy365.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/itstudy365.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/itstudy365.com\/blog\/wp-json\/wp\/v2\/comments?post=1273"}],"version-history":[{"count":2,"href":"https:\/\/itstudy365.com\/blog\/wp-json\/wp\/v2\/posts\/1273\/revisions"}],"predecessor-version":[{"id":1367,"href":"https:\/\/itstudy365.com\/blog\/wp-json\/wp\/v2\/posts\/1273\/revisions\/1367"}],"wp:attachment":[{"href":"https:\/\/itstudy365.com\/blog\/wp-json\/wp\/v2\/media?parent=1273"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/itstudy365.com\/blog\/wp-json\/wp\/v2\/categories?post=1273"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/itstudy365.com\/blog\/wp-json\/wp\/v2\/tags?post=1273"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}