{"id":11471,"date":"2022-09-27T13:11:47","date_gmt":"2022-09-27T07:41:47","guid":{"rendered":"https:\/\/jassweb.com\/solved\/solved-how-to-implement-smart-bar-in-android-app-closed\/"},"modified":"2022-09-27T13:11:47","modified_gmt":"2022-09-27T07:41:47","slug":"solved-how-to-implement-smart-bar-in-android-app-closed","status":"publish","type":"post","link":"https:\/\/jassweb.com\/solved\/solved-how-to-implement-smart-bar-in-android-app-closed\/","title":{"rendered":"[Solved] How to implement smart bar in Android app? [closed]"},"content":{"rendered":"<p> [ad_1]<br \/>\n<\/p>\n<div id=\"answer-14931300\" class=\"answer js-answer accepted-answer js-accepted-answer\" data-answerid=\"14931300\" data-parentid=\"14931161\" data-score=\"2\" data-position-on-page=\"1\" data-highest-scored=\"1\" data-question-has-accepted-highest-score=\"1\" itemprop=\"acceptedAnswer\" itemscope itemtype=\"https:\/\/schema.org\/Answer\">\n<div class=\"post-layout\">\n<div class=\"votecell post-layout--left\"><\/div>\n<div class=\"answercell post-layout--right\">\n<div class=\"s-prose js-post-body\" itemprop=\"text\">\n<p>Create XML Layout<\/p>\n<pre><code>&lt;RelativeLayout xmlns:android=\"http:\/\/schemas.android.com\/apk\/res\/android\"\nxmlns:tools=\"http:\/\/schemas.android.com\/tools\"\nandroid:layout_width=\"match_parent\"\nandroid:layout_height=\"match_parent\"\ntools:context=\".MainActivity\" &gt;\n&lt;LinearLayout\n    android:id=\"@+id\/menu\"\n    android:layout_width=\"match_parent\"\n    android:layout_height=\"fill_parent\"\n    android:background=\"#51d7ff\"\n    android:orientation=\"vertical\" &gt;\n    &lt;ListView\n        android:id=\"@+id\/ListView01\"\n        android:layout_width=\"match_parent\"\n        android:layout_height=\"wrap_content\"\n        android:background=\"#51d7ff\"\n        android:cacheColorHint=\"#51d7ff\" &gt;\n    &lt;\/ListView&gt;\n&lt;\/LinearLayout&gt;\n&lt;LinearLayout\n    android:id=\"@+id\/app\"\n    android:layout_width=\"match_parent\"\n    android:layout_height=\"fill_parent\"\n    android:background=\"#033333\"\n    android:orientation=\"vertical\" &gt;\n    &lt;Button\n        android:id=\"@+id\/BtnSlide\"\n        android:layout_width=\"wrap_content\"\n        android:layout_height=\"wrap_content\"\n        android:background=\"@drawable\/menu\" \/&gt;\n    &lt;ListView\n        android:id=\"@+id\/list\"\n        android:layout_width=\"match_parent\"\n        android:layout_height=\"wrap_content\"\n        android:background=\"#758fb1\"\n        android:cacheColorHint=\"#758fb1\" &gt;\n    &lt;\/ListView&gt;\n&lt;\/LinearLayout&gt;\n<\/code><\/pre>\n<\/p>\n<p>Main Activity<\/p>\n<pre><code>public class MainActivity extends Activity implements AnimationListener\n{\n\nButton Slide_Button;\nView menu;\nView app;\nboolean menuOut = false;\nAnimParams animParams = new AnimParams();\n@Override\nprotected void onCreate(Bundle savedInstanceState) \n{\n    super.onCreate(savedInstanceState);\n    setContentView(R.layout.activity_main);\n    menu = findViewById(R.id.menu);\n    app = findViewById(R.id.app);\n\n    Slide_Button=(Button)findViewById(R.id.BtnSlide);\n    Slide_Button.setOnClickListener(OnClick_slide);\n\n    ListView listView = (ListView) app.findViewById(R.id.list);\n    ViewUtils.initListView(this, listView, \"Itemwa \", 30, android.R.layout.simple_list_item_1);\n\n    ListView listView1 = (ListView) menu.findViewById(R.id.ListView01);\n    ViewUtils.initListView(this, listView1, \"Itemwana \", 10, android.R.layout.simple_list_item_1);\n}\n\nButton.OnClickListener OnClick_slide=new Button.OnClickListener()\n{\n\n    @Override\n    public void onClick(View arg0)\n    {\n        \/\/ TODO Auto-generated method stub\n        System.out.println(\"onClick \" + new Date());\n        MainActivity me = MainActivity.this;\n\n        Animation anim;\n\n        int w = app.getMeasuredWidth();\n        int h = app.getMeasuredHeight();\n        int left = (int) (app.getMeasuredWidth() * 0.8);\n\n        if (!menuOut)\n        {\n\n            anim = new TranslateAnimation(0, left, 0, 0);\n            menu.setVisibility(View.VISIBLE);\n            animParams.init(left, 0, left + w, h);\n        } \n        else \n        {\n\n            anim = new TranslateAnimation(0, -left, 0, 0);\n            animParams.init(0, 0, w, h);\n        }\n\n        anim.setDuration(500);\n        anim.setAnimationListener(me);\n\n        anim.setFillAfter(true);\n\n        app.startAnimation(anim);\n    }\n\n};\n\nvoid layoutApp(boolean menuOut) \n{\n    app.layout(animParams.left, animParams.top, animParams.right, animParams.bottom);\n\n    app.clearAnimation();\n\n}\n\n@Override\npublic void onAnimationEnd(Animation animation) \n{\n    menuOut = !menuOut;\n    if (!menuOut) \n    {\n        menu.setVisibility(View.INVISIBLE);\n    }\n    layoutApp(menuOut);\n}\n\n@Override\npublic void onAnimationRepeat(Animation animation) \n{\n\n}\n\n@Override\npublic void onAnimationStart(Animation animation)\n{\n\n}\n\n\nstatic class AnimParams \n{\n    int left, right, top, bottom;\n\n    void init(int left, int top, int right, int bottom) \n    {\n        this.left = left;\n        this.top = top;\n        this.right = right;\n        this.bottom = bottom;\n    }\n}\n<\/code><\/pre>\n<p>ViewUtils.java<\/p>\n<pre><code> public class ViewUtils\n {\n public static void setViewWidths(View view, View[] views) \n {\n    int w = view.getWidth();\n    int h = view.getHeight();\n    for (int i = 0; i &lt; views.length; i++) \n    {\n        View v = views[i];\n        v.layout((i + 1) * w, 0, (i + 2) * w, h);\n    }\n }\n\n\npublic static void initListView(Context context, ListView listView, String prefix, int numItems, int layout) \n{\n    \/\/ By using setAdpater method in listview we an add string array in list.\n    String[] arr = new String[numItems];\n    for (int i = 0; i &lt; arr.length; i++)\n    {\n        arr[i] = prefix + (i + 1);\n    }\n    listView.setAdapter(new ArrayAdapter&lt;String&gt;(context, layout, arr));\n    listView.setOnItemClickListener(new OnItemClickListener() {\n        @Override\n        public void onItemClick(AdapterView&lt;?&gt; parent, View view, int position, long id)\n        {\n\n        }\n    });\n    } \n }\n<\/code><\/pre>\n<p>I hope you got your answer.<\/p>\n<\/p><\/div>\n<div class=\"mt24\"><\/div>\n<\/div>\n<p>            <span class=\"d-none\" itemprop=\"commentCount\"><\/span> <\/p><\/div>\n<\/div>\n<p>[ad_2]<\/p>\n<p>solved How to implement smart bar in Android app? [closed] <\/p>\n","protected":false},"excerpt":{"rendered":"<p>[ad_1] Create XML Layout &lt;RelativeLayout xmlns:android=&#8221;http:\/\/schemas.android.com\/apk\/res\/android&#8221; xmlns:tools=&#8221;http:\/\/schemas.android.com\/tools&#8221; android:layout_width=&#8221;match_parent&#8221; android:layout_height=&#8221;match_parent&#8221; tools:context=&#8221;.MainActivity&#8221; &gt; &lt;LinearLayout android:id=&#8221;@+id\/menu&#8221; android:layout_width=&#8221;match_parent&#8221; android:layout_height=&#8221;fill_parent&#8221; android:background=&#8221;#51d7ff&#8221; android:orientation=&#8221;vertical&#8221; &gt; &lt;ListView android:id=&#8221;@+id\/ListView01&#8243; android:layout_width=&#8221;match_parent&#8221; android:layout_height=&#8221;wrap_content&#8221; android:background=&#8221;#51d7ff&#8221; android:cacheColorHint=&#8221;#51d7ff&#8221; &gt; &lt;\/ListView&gt; &lt;\/LinearLayout&gt; &lt;LinearLayout android:id=&#8221;@+id\/app&#8221; android:layout_width=&#8221;match_parent&#8221; android:layout_height=&#8221;fill_parent&#8221; android:background=&#8221;#033333&#8243; android:orientation=&#8221;vertical&#8221; &gt; &lt;Button android:id=&#8221;@+id\/BtnSlide&#8221; android:layout_width=&#8221;wrap_content&#8221; android:layout_height=&#8221;wrap_content&#8221; android:background=&#8221;@drawable\/menu&#8221; \/&gt; &lt;ListView android:id=&#8221;@+id\/list&#8221; android:layout_width=&#8221;match_parent&#8221; android:layout_height=&#8221;wrap_content&#8221; android:background=&#8221;#758fb1&#8243; android:cacheColorHint=&#8221;#758fb1&#8243; &gt; &lt;\/ListView&gt; &lt;\/LinearLayout&gt; Main Activity public class MainActivity extends &#8230; <a title=\"[Solved] How to implement smart bar in Android app? [closed]\" class=\"read-more\" href=\"https:\/\/jassweb.com\/solved\/solved-how-to-implement-smart-bar-in-android-app-closed\/\" aria-label=\"More on [Solved] How to implement smart bar in Android app? [closed]\">Read more<\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[320],"tags":[452,323],"class_list":["post-11471","post","type-post","status-publish","format-standard","hentry","category-solved","tag-android","tag-java"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>[Solved] How to implement smart bar in Android app? [closed] - JassWeb<\/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:\/\/jassweb.com\/solved\/solved-how-to-implement-smart-bar-in-android-app-closed\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"[Solved] How to implement smart bar in Android app? [closed] - JassWeb\" \/>\n<meta property=\"og:description\" content=\"[ad_1] Create XML Layout &lt;RelativeLayout xmlns:android=&quot;http:\/\/schemas.android.com\/apk\/res\/android&quot; xmlns:tools=&quot;http:\/\/schemas.android.com\/tools&quot; android:layout_width=&quot;match_parent&quot; android:layout_height=&quot;match_parent&quot; tools:context=&quot;.MainActivity&quot; &gt; &lt;LinearLayout android:id=&quot;@+id\/menu&quot; android:layout_width=&quot;match_parent&quot; android:layout_height=&quot;fill_parent&quot; android:background=&quot;#51d7ff&quot; android:orientation=&quot;vertical&quot; &gt; &lt;ListView android:id=&quot;@+id\/ListView01&quot; android:layout_width=&quot;match_parent&quot; android:layout_height=&quot;wrap_content&quot; android:background=&quot;#51d7ff&quot; android:cacheColorHint=&quot;#51d7ff&quot; &gt; &lt;\/ListView&gt; &lt;\/LinearLayout&gt; &lt;LinearLayout android:id=&quot;@+id\/app&quot; android:layout_width=&quot;match_parent&quot; android:layout_height=&quot;fill_parent&quot; android:background=&quot;#033333&quot; android:orientation=&quot;vertical&quot; &gt; &lt;Button android:id=&quot;@+id\/BtnSlide&quot; android:layout_width=&quot;wrap_content&quot; android:layout_height=&quot;wrap_content&quot; android:background=&quot;@drawable\/menu&quot; \/&gt; &lt;ListView android:id=&quot;@+id\/list&quot; android:layout_width=&quot;match_parent&quot; android:layout_height=&quot;wrap_content&quot; android:background=&quot;#758fb1&quot; android:cacheColorHint=&quot;#758fb1&quot; &gt; &lt;\/ListView&gt; &lt;\/LinearLayout&gt; Main Activity public class MainActivity extends ... Read more\" \/>\n<meta property=\"og:url\" content=\"https:\/\/jassweb.com\/solved\/solved-how-to-implement-smart-bar-in-android-app-closed\/\" \/>\n<meta property=\"og:site_name\" content=\"JassWeb\" \/>\n<meta property=\"article:published_time\" content=\"2022-09-27T07:41:47+00:00\" \/>\n<meta name=\"author\" content=\"Kirat\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Kirat\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/jassweb.com\/solved\/solved-how-to-implement-smart-bar-in-android-app-closed\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-how-to-implement-smart-bar-in-android-app-closed\/\"},\"author\":{\"name\":\"Kirat\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31\"},\"headline\":\"[Solved] How to implement smart bar in Android app? [closed]\",\"datePublished\":\"2022-09-27T07:41:47+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-how-to-implement-smart-bar-in-android-app-closed\/\"},\"wordCount\":35,\"publisher\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#organization\"},\"keywords\":[\"android\",\"java\"],\"articleSection\":[\"Solved\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/jassweb.com\/solved\/solved-how-to-implement-smart-bar-in-android-app-closed\/\",\"url\":\"https:\/\/jassweb.com\/solved\/solved-how-to-implement-smart-bar-in-android-app-closed\/\",\"name\":\"[Solved] How to implement smart bar in Android app? [closed] - JassWeb\",\"isPartOf\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#website\"},\"datePublished\":\"2022-09-27T07:41:47+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-how-to-implement-smart-bar-in-android-app-closed\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/jassweb.com\/solved\/solved-how-to-implement-smart-bar-in-android-app-closed\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/jassweb.com\/solved\/solved-how-to-implement-smart-bar-in-android-app-closed\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/jassweb.com\/solved\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"[Solved] How to implement smart bar in Android app? [closed]\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/jassweb.com\/solved\/#website\",\"url\":\"https:\/\/jassweb.com\/solved\/\",\"name\":\"JassWeb\",\"description\":\"Build High-quality Websites\",\"publisher\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/jassweb.com\/solved\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/jassweb.com\/solved\/#organization\",\"name\":\"Jass Web\",\"url\":\"https:\/\/jassweb.com\/solved\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png\",\"contentUrl\":\"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png\",\"width\":693,\"height\":132,\"caption\":\"Jass Web\"},\"image\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31\",\"name\":\"Kirat\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1776403586\",\"contentUrl\":\"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1776403586\",\"caption\":\"Kirat\"},\"sameAs\":[\"http:\/\/jassweb.com\"],\"url\":\"https:\/\/jassweb.com\/solved\/author\/jaspritsinghghumangmail-com\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"[Solved] How to implement smart bar in Android app? [closed] - JassWeb","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:\/\/jassweb.com\/solved\/solved-how-to-implement-smart-bar-in-android-app-closed\/","og_locale":"en_US","og_type":"article","og_title":"[Solved] How to implement smart bar in Android app? [closed] - JassWeb","og_description":"[ad_1] Create XML Layout &lt;RelativeLayout xmlns:android=\"http:\/\/schemas.android.com\/apk\/res\/android\" xmlns:tools=\"http:\/\/schemas.android.com\/tools\" android:layout_width=\"match_parent\" android:layout_height=\"match_parent\" tools:context=\".MainActivity\" &gt; &lt;LinearLayout android:id=\"@+id\/menu\" android:layout_width=\"match_parent\" android:layout_height=\"fill_parent\" android:background=\"#51d7ff\" android:orientation=\"vertical\" &gt; &lt;ListView android:id=\"@+id\/ListView01\" android:layout_width=\"match_parent\" android:layout_height=\"wrap_content\" android:background=\"#51d7ff\" android:cacheColorHint=\"#51d7ff\" &gt; &lt;\/ListView&gt; &lt;\/LinearLayout&gt; &lt;LinearLayout android:id=\"@+id\/app\" android:layout_width=\"match_parent\" android:layout_height=\"fill_parent\" android:background=\"#033333\" android:orientation=\"vertical\" &gt; &lt;Button android:id=\"@+id\/BtnSlide\" android:layout_width=\"wrap_content\" android:layout_height=\"wrap_content\" android:background=\"@drawable\/menu\" \/&gt; &lt;ListView android:id=\"@+id\/list\" android:layout_width=\"match_parent\" android:layout_height=\"wrap_content\" android:background=\"#758fb1\" android:cacheColorHint=\"#758fb1\" &gt; &lt;\/ListView&gt; &lt;\/LinearLayout&gt; Main Activity public class MainActivity extends ... Read more","og_url":"https:\/\/jassweb.com\/solved\/solved-how-to-implement-smart-bar-in-android-app-closed\/","og_site_name":"JassWeb","article_published_time":"2022-09-27T07:41:47+00:00","author":"Kirat","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Kirat","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/jassweb.com\/solved\/solved-how-to-implement-smart-bar-in-android-app-closed\/#article","isPartOf":{"@id":"https:\/\/jassweb.com\/solved\/solved-how-to-implement-smart-bar-in-android-app-closed\/"},"author":{"name":"Kirat","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31"},"headline":"[Solved] How to implement smart bar in Android app? [closed]","datePublished":"2022-09-27T07:41:47+00:00","mainEntityOfPage":{"@id":"https:\/\/jassweb.com\/solved\/solved-how-to-implement-smart-bar-in-android-app-closed\/"},"wordCount":35,"publisher":{"@id":"https:\/\/jassweb.com\/solved\/#organization"},"keywords":["android","java"],"articleSection":["Solved"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/jassweb.com\/solved\/solved-how-to-implement-smart-bar-in-android-app-closed\/","url":"https:\/\/jassweb.com\/solved\/solved-how-to-implement-smart-bar-in-android-app-closed\/","name":"[Solved] How to implement smart bar in Android app? [closed] - JassWeb","isPartOf":{"@id":"https:\/\/jassweb.com\/solved\/#website"},"datePublished":"2022-09-27T07:41:47+00:00","breadcrumb":{"@id":"https:\/\/jassweb.com\/solved\/solved-how-to-implement-smart-bar-in-android-app-closed\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/jassweb.com\/solved\/solved-how-to-implement-smart-bar-in-android-app-closed\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/jassweb.com\/solved\/solved-how-to-implement-smart-bar-in-android-app-closed\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/jassweb.com\/solved\/"},{"@type":"ListItem","position":2,"name":"[Solved] How to implement smart bar in Android app? [closed]"}]},{"@type":"WebSite","@id":"https:\/\/jassweb.com\/solved\/#website","url":"https:\/\/jassweb.com\/solved\/","name":"JassWeb","description":"Build High-quality Websites","publisher":{"@id":"https:\/\/jassweb.com\/solved\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/jassweb.com\/solved\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/jassweb.com\/solved\/#organization","name":"Jass Web","url":"https:\/\/jassweb.com\/solved\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/","url":"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png","contentUrl":"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png","width":693,"height":132,"caption":"Jass Web"},"image":{"@id":"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31","name":"Kirat","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/person\/image\/","url":"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1776403586","contentUrl":"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1776403586","caption":"Kirat"},"sameAs":["http:\/\/jassweb.com"],"url":"https:\/\/jassweb.com\/solved\/author\/jaspritsinghghumangmail-com\/"}]}},"_links":{"self":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/posts\/11471","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/comments?post=11471"}],"version-history":[{"count":0,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/posts\/11471\/revisions"}],"wp:attachment":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/media?parent=11471"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/categories?post=11471"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/tags?post=11471"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}