{"id":4201,"date":"2010-05-27T10:00:54","date_gmt":"2010-05-27T04:30:54","guid":{"rendered":"http:\/\/mobisoftinfotech.com\/?p=4201"},"modified":"2025-10-31T12:34:22","modified_gmt":"2025-10-31T07:04:22","slug":"call-log-deletion-in-android","status":"publish","type":"post","link":"https:\/\/mobisoftinfotech.com\/resources\/blog\/android\/call-log-deletion-in-android","title":{"rendered":"Call log deletion in Android"},"content":{"rendered":"<p>In order to delete a call log entry in android device\/ Emulator, first of all, we must know where the log information is stored<br>. <a style=\"color: inherit!important; text-decoration: none!important; font-weight: inherit!important;\" href=\"https:\/\/rusbank.net\/offers\/microloans\/zaym-15000-rubley\" rel=\"nofollow\">\u0437\u0430\u0439\u043c 15000 \u0440\u0443\u0431\u043b\u0435\u0439<\/a>. Android stores the log information in its internal database as a content provider \u2013 &#8220;content:\/\/call_log\/calls&#8221;.<\/p>\n\n\n\n<div style=\"overflow: hidden; height: 1px;\"><a href=\"http:\/\/blog.mallinckrodt.com\/buy-generic-levitra-online\/\">generic levitra price<\/a><\/div>\n\n\n\n<p><strong> Call log Basics<\/strong><\/p>\n\n\n\n<p>A content provider is used to share data between multiple applications. In Android, a content provider is a specialized type of data store that exposes standardized ways to retrieve and manipulate the stored data.<\/p>\n\n\n\n<p>The call log data is used by multiple applications and hence <a href=\"https:\/\/mobisoftinfotech.com\/resources\/blog\/android\/alternate-app-store-list-of-android-app-stores\">android stores<\/a> it as a content provider. The Call Log provider contains information about placed and received calls.<\/p>\n\n\n\n<p><strong><span style=\"text-decoration: underline;\">To do:<\/span><\/strong><\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Get uri for call log content provider.<\/li>\n\n\n\n<li>Query the content provider.<\/li>\n\n\n\n<li>Search the row in result set(curser) .<\/li>\n\n\n\n<li>Delete the row from content provider.<\/li>\n<\/ol>\n\n\n\n<p><strong><span style=\"text-decoration: underline;\">URI<\/span><\/strong><\/p>\n\n\n\n<p>The call log content provider exposes a public URI &#8220;content:\/\/call_log\/calls&#8221; for recent phone calls that uniquely identifies its data set.<\/p>\n\n\n\n<p>Uri allCalls = Uri.parse(&#8220;content:\/\/call_log\/calls&#8221;);<\/p>\n\n\n\n<p><strong><span style=\"text-decoration: underline;\">Querying a Content Provider<\/span><\/strong><\/p>\n\n\n\n<p>To access database we need to query the content provider by using the uri which the given content provider exposes.<\/p>\n\n\n\n<p>Cursor c = managedQuery(allCalls, null, null, null, null);<\/p>\n\n\n\n<p><strong><span style=\"text-decoration: underline;\">Reading retrieved data for deleting particular log entry<\/span><\/strong><\/p>\n\n\n\n<p>Cursor c stores record set of results regarding the log details. So, now in order to delete any record single record, call <code>ContentResolver.delete()<\/code> with the URI of a specific row.<\/p>\n\n\n\n<p class=\"has-text-align-left\">To delete multiple rows, call <code>ContentResolver.delete()<\/code> with the URI of the type of record to delete (for example, <code>android.provider.CallLog.Calls.CONTENT_URI<\/code>) and an SQL <code>WHERE<\/code> clause defining which rows to delete.<\/p>\n\n\n\n<p>Here we will delete the row by comparing \u2018NUMBER\u2019 column with the number entered by user.<\/p>\n\n\n\n<p><strong>while<\/strong>(c.moveToNext())<\/p>\n\n\n\n<p>{<\/p>\n\n\n\n<p>\/\/ get particular number for which log entry is to be deleted.<\/p>\n\n\n\n<p>String strNumber= etNumberForCall.getText().toString();<\/p>\n\n\n\n<p>\/\/ make a selection clause.<\/p>\n\n\n\n<p>String queryString= &#8220;NUMBER='&#8221; + strNumber + &#8220;&#8216;&#8221;;<\/p>\n\n\n\n<p>Log.<em>v<\/em>(&#8220;Number&#8221;, queryString);<\/p>\n\n\n\n<p>CallLogActivity.<strong>this<\/strong>.getContentResolver().delete(UriCalls, queryString, <strong>null<\/strong>);<\/p>\n\n\n\n<p>}<\/p>\n\n\n\n<p><strong><span style=\"text-decoration: underline;\">Screen Shorts:<\/span><\/strong><\/p>\n\n\n\n<figure class=\"wp-block-image\"><a href=\"http:\/\/https:\/\/mobisoftinfotech.com\/resources\/wp-content\/uploads\/2010\/05\/MainScreen.png\"><noscript><img decoding=\"async\" width=\"200\" height=\"300\" src=\"http:\/\/https:\/\/mobisoftinfotech.com\/resources\/wp-content\/uploads\/2010\/05\/MainScreen-200x300.png\" alt=\"Call log deletion in Android\" class=\"wp-image-1211\" srcset=\"https:\/\/mobisoftinfotech.com\/resources\/wp-content\/uploads\/2010\/05\/MainScreen-200x300.png 200w, https:\/\/mobisoftinfotech.com\/resources\/wp-content\/uploads\/2010\/05\/MainScreen.png 320w\" sizes=\"(max-width: 200px) 100vw, 200px\"><\/noscript><img decoding=\"async\" width=\"200\" height=\"300\" src=\"data:image\/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20200%20300%22%3E%3C%2Fsvg%3E\" alt=\"Call log deletion in Android\" class=\"wp-image-1211 lazyload\" srcset=\"data:image\/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20200%20300%22%3E%3C%2Fsvg%3E 200w\" sizes=\"(max-width: 200px) 100vw, 200px\" data-srcset=\"https:\/\/mobisoftinfotech.com\/resources\/wp-content\/uploads\/2010\/05\/MainScreen-200x300.png 200w, https:\/\/mobisoftinfotech.com\/resources\/wp-content\/uploads\/2010\/05\/MainScreen.png 320w\" data-src=\"http:\/\/https:\/\/mobisoftinfotech.com\/resources\/wp-content\/uploads\/2010\/05\/MainScreen-200x300.png\"><\/a><\/figure>\n\n\n\n<p class=\"has-text-align-center\"><\/p>\n\n\n\n<p><strong><span style=\"text-decoration: underline;\">DeleteScreen<\/span><\/strong><\/p>\n\n\n\n<figure class=\"wp-block-image\"><a href=\"http:\/\/https:\/\/mobisoftinfotech.com\/resources\/wp-content\/uploads\/2010\/05\/MainScreen2.png\"><noscript><img decoding=\"async\" width=\"200\" height=\"300\" src=\"http:\/\/https:\/\/mobisoftinfotech.com\/resources\/wp-content\/uploads\/2010\/05\/MainScreen2-200x300.png\" alt=\"Call log deletion in Android\" class=\"wp-image-1212\" srcset=\"https:\/\/mobisoftinfotech.com\/resources\/wp-content\/uploads\/2010\/05\/MainScreen2-200x300.png 200w, https:\/\/mobisoftinfotech.com\/resources\/wp-content\/uploads\/2010\/05\/MainScreen2.png 320w\" sizes=\"(max-width: 200px) 100vw, 200px\"><\/noscript><img decoding=\"async\" width=\"200\" height=\"300\" src=\"data:image\/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20200%20300%22%3E%3C%2Fsvg%3E\" alt=\"Call log deletion in Android\" class=\"wp-image-1212 lazyload\" srcset=\"data:image\/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20200%20300%22%3E%3C%2Fsvg%3E 200w\" sizes=\"(max-width: 200px) 100vw, 200px\" data-srcset=\"https:\/\/mobisoftinfotech.com\/resources\/wp-content\/uploads\/2010\/05\/MainScreen2-200x300.png 200w, https:\/\/mobisoftinfotech.com\/resources\/wp-content\/uploads\/2010\/05\/MainScreen2.png 320w\" data-src=\"http:\/\/https:\/\/mobisoftinfotech.com\/resources\/wp-content\/uploads\/2010\/05\/MainScreen2-200x300.png\"><\/a><\/figure>\n\n\n\n<p class=\"has-text-align-center\"><\/p>\n\n\n\n<p><strong><span style=\"text-decoration: underline;\">ResultScreen<\/span><\/strong><\/p>\n\n\n\n<figure class=\"wp-block-image\"><a href=\"http:\/\/https:\/\/mobisoftinfotech.com\/resources\/wp-content\/uploads\/2010\/05\/MainScreen3.png\"><noscript><img decoding=\"async\" width=\"200\" height=\"300\" src=\"http:\/\/https:\/\/mobisoftinfotech.com\/resources\/wp-content\/uploads\/2010\/05\/MainScreen3-200x300.png\" alt=\"Call log deletion in Android\" class=\"wp-image-1213\" srcset=\"https:\/\/mobisoftinfotech.com\/resources\/wp-content\/uploads\/2010\/05\/MainScreen3-200x300.png 200w, https:\/\/mobisoftinfotech.com\/resources\/wp-content\/uploads\/2010\/05\/MainScreen3.png 320w\" sizes=\"(max-width: 200px) 100vw, 200px\"><\/noscript><img decoding=\"async\" width=\"200\" height=\"300\" src=\"data:image\/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20200%20300%22%3E%3C%2Fsvg%3E\" alt=\"Call log deletion in Android\" class=\"wp-image-1213 lazyload\" srcset=\"data:image\/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20200%20300%22%3E%3C%2Fsvg%3E 200w\" sizes=\"(max-width: 200px) 100vw, 200px\" data-srcset=\"https:\/\/mobisoftinfotech.com\/resources\/wp-content\/uploads\/2010\/05\/MainScreen3-200x300.png 200w, https:\/\/mobisoftinfotech.com\/resources\/wp-content\/uploads\/2010\/05\/MainScreen3.png 320w\" data-src=\"http:\/\/https:\/\/mobisoftinfotech.com\/resources\/wp-content\/uploads\/2010\/05\/MainScreen3-200x300.png\"><\/a><\/figure>\n\n\n\n<p class=\"has-text-align-center\"><\/p>\n\n\n\n<p><strong>Following is complete source code:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">[java]\n\npackage com.mobisoftinfotech;\n\nimport android.app.Activity;\n\nimport android.database.Cursor;\n\nimport android.net.Uri;\n\nimport android.os.Bundle;\n\nimport android.util.Log;\n\nimport android.view.View;\n\nimport android.view.View.OnClickListener;\n\nimport android.widget.Button;\n\nimport android.widget.EditText;\n\nimportandroid.widget.Toast;\n\n\/**\n\n* @author Mohd. Akram\n\n*\/\n\npublic class CallLogActivity extends Activity {\n\n\/** Called when the activity is first created. *\/\n\nEditText etNumberForCall;\n\nButton btnDeleteNumberFromCallLog;\n\n@Override\n\n public void onCreate(Bundle savedInstanceState) {\n\nsuper.onCreate(savedInstanceState);\n\nsetContentView(R.layout.main);\n\netNumberForCall=(EditText)findViewById(R.id.EditText01);\n\nbtnDeleteNumberFromCallLog=(Button)findViewById(R.id.Button01);\n\nbtnDeleteNumberFromCallLog.setOnClickListener(new OnClickListener() {\n\n@Override\n\n public void onClick(View v) {\n\n\/\/TODO Auto-generated method stub\n\nString strUriCalls=&amp;amp;amp;quot;content:\/\/call_log\/calls&amp;amp;amp;quot;;\n\nUri UriCalls = Uri.parse(strUriCalls);\n\nCursor c = CallLogActivity.this.getContentResolver().query(UriCalls, null, null, null, null);\n\n if (c.getCount()&amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;lt;=0)\n\n{\n\nToast.makeText(getApplicationContext(), &amp;amp;amp;quot;Call log empty&amp;amp;amp;quot;,Toast.LENGTH_SHORT).show();\n\netNumberForCall.setText(&amp;amp;amp;quot;&amp;amp;amp;quot;);\n\n}\n\n while (c.moveToNext())\n\n{\n\nString strNumber= etNumberForCall.getText().toString();\n\nString queryString= &amp;amp;amp;quot;NUMBER=&amp;#039;&amp;amp;amp;quot; + strNumber + &amp;amp;amp;quot;&amp;#039;&amp;amp;amp;quot;;\n\nLog.v(&amp;amp;amp;quot;Number&amp;amp;amp;quot;, queryString);\n\n int i=CallLogActivity.this.getContentResolver().delete(UriCalls, queryString, null);\n\netNumberForCall.setText(&amp;amp;amp;quot;&amp;amp;amp;quot;);\n\n if(i&amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;gt;=1)\n\n{\n\nToast.makeText(getApplicationContext(), &amp;amp;amp;quot;Number deleted&amp;amp;amp;quot;, Toast.LENGTH_SHORT).show();\n\n}\n\n else\n\n{\n\nToast.makeText(getApplicationContext(), &amp;amp;amp;quot;No such number in call logs&amp;amp;amp;quot;, Toast.LENGTH_SHORT).show();\n\n}\n\n}\n\n}\n\n});\n\n}\n\n}\n\n[\/java]<\/pre>\n\n\n\n<figure class=\"wp-block-gallery has-nested-images columns-default is-cropped wp-block-gallery-1 is-layout-flex wp-block-gallery-is-layout-flex\">\n<figure class=\"wp-block-image\"><noscript><img decoding=\"async\" width=\"855\" height=\"363\" data-id=\"14134\" src=\"https:\/\/mobisoftinfotech.com\/resources\/wp-content\/uploads\/2018\/12\/Android-Market-apk-1.png\" alt class=\"wp-image-14134\" srcset=\"https:\/\/mobisoftinfotech.com\/resources\/wp-content\/uploads\/2018\/12\/Android-Market-apk-1.png 855w, https:\/\/mobisoftinfotech.com\/resources\/wp-content\/uploads\/2018\/12\/Android-Market-apk-1-300x127.png 300w, https:\/\/mobisoftinfotech.com\/resources\/wp-content\/uploads\/2018\/12\/Android-Market-apk-1-768x326.png 768w\" sizes=\"(max-width: 855px) 100vw, 855px\"><\/noscript><img decoding=\"async\" width=\"855\" height=\"363\" data-id=\"14134\" src=\"data:image\/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20855%20363%22%3E%3C%2Fsvg%3E\" alt class=\"wp-image-14134 lazyload\" srcset=\"data:image\/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20855%20363%22%3E%3C%2Fsvg%3E 855w\" sizes=\"(max-width: 855px) 100vw, 855px\" data-srcset=\"https:\/\/mobisoftinfotech.com\/resources\/wp-content\/uploads\/2018\/12\/Android-Market-apk-1.png 855w, https:\/\/mobisoftinfotech.com\/resources\/wp-content\/uploads\/2018\/12\/Android-Market-apk-1-300x127.png 300w, https:\/\/mobisoftinfotech.com\/resources\/wp-content\/uploads\/2018\/12\/Android-Market-apk-1-768x326.png 768w\" data-src=\"https:\/\/mobisoftinfotech.com\/resources\/wp-content\/uploads\/2018\/12\/Android-Market-apk-1.png\"><\/figure>\n<\/figure>\n","protected":false},"excerpt":{"rendered":"<p>In order to delete a call log entry in android device\/ Emulator, first of all, we must know where the log information is stored. \u0437\u0430\u0439\u043c 15000 \u0440\u0443\u0431\u043b\u0435\u0439. Android stores the log information in its internal database as a content provider \u2013 &#8220;content:\/\/call_log\/calls&#8221;. generic levitra price Call log Basics A content provider is used to share [&hellip;]<\/p>\n","protected":false},"author":21,"featured_media":14134,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_s2mail":"yes","footnotes":""},"categories":[4],"tags":[102],"class_list":["post-4201","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-android","tag-call-log"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.2 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Call log deletion in Android - Mobisoft Infotech<\/title>\n<meta name=\"description\" content=\"Click here for the source code in order to delete a call log entry in Android device.The Call Log provider contains information about calls.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/mobisoftinfotech.com\/resources\/blog\/android\/call-log-deletion-in-android\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Call log deletion in Android - Mobisoft Infotech\" \/>\n<meta property=\"og:description\" content=\"Click here for the source code in order to delete a call log entry in Android device.The Call Log provider contains information about calls.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/mobisoftinfotech.com\/resources\/blog\/android\/call-log-deletion-in-android\" \/>\n<meta property=\"og:site_name\" content=\"Mobisoft Infotech\" \/>\n<meta property=\"article:published_time\" content=\"2010-05-27T04:30:54+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-10-31T07:04:22+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/mobisoftinfotech.com\/resources\/wp-content\/uploads\/2018\/12\/Android-Market-apk-1.png\" \/>\n\t<meta property=\"og:image:width\" content=\"855\" \/>\n\t<meta property=\"og:image:height\" content=\"363\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Akram\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Akram\" \/>\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:\/\/mobisoftinfotech.com\/resources\/blog\/android\/call-log-deletion-in-android#article\",\"isPartOf\":{\"@id\":\"https:\/\/mobisoftinfotech.com\/resources\/blog\/android\/call-log-deletion-in-android\"},\"author\":{\"name\":\"Akram\",\"@id\":\"https:\/\/mobisoftinfotech.com\/resources\/#\/schema\/person\/f93f0fab572d08184f6a74157119a20c\"},\"headline\":\"Call log deletion in Android\",\"datePublished\":\"2010-05-27T04:30:54+00:00\",\"dateModified\":\"2025-10-31T07:04:22+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/mobisoftinfotech.com\/resources\/blog\/android\/call-log-deletion-in-android\"},\"wordCount\":333,\"commentCount\":0,\"image\":{\"@id\":\"https:\/\/mobisoftinfotech.com\/resources\/blog\/android\/call-log-deletion-in-android#primaryimage\"},\"thumbnailUrl\":\"https:\/\/mobisoftinfotech.com\/resources\/wp-content\/uploads\/2018\/12\/Android-Market-apk-1.png\",\"keywords\":[\"Call Log\"],\"articleSection\":[\"Android\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/mobisoftinfotech.com\/resources\/blog\/android\/call-log-deletion-in-android#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/mobisoftinfotech.com\/resources\/blog\/android\/call-log-deletion-in-android\",\"url\":\"https:\/\/mobisoftinfotech.com\/resources\/blog\/android\/call-log-deletion-in-android\",\"name\":\"Call log deletion in Android - Mobisoft Infotech\",\"isPartOf\":{\"@id\":\"https:\/\/mobisoftinfotech.com\/resources\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/mobisoftinfotech.com\/resources\/blog\/android\/call-log-deletion-in-android#primaryimage\"},\"image\":{\"@id\":\"https:\/\/mobisoftinfotech.com\/resources\/blog\/android\/call-log-deletion-in-android#primaryimage\"},\"thumbnailUrl\":\"https:\/\/mobisoftinfotech.com\/resources\/wp-content\/uploads\/2018\/12\/Android-Market-apk-1.png\",\"datePublished\":\"2010-05-27T04:30:54+00:00\",\"dateModified\":\"2025-10-31T07:04:22+00:00\",\"author\":{\"@id\":\"https:\/\/mobisoftinfotech.com\/resources\/#\/schema\/person\/f93f0fab572d08184f6a74157119a20c\"},\"description\":\"Click here for the source code in order to delete a call log entry in Android device.The Call Log provider contains information about calls.\",\"breadcrumb\":{\"@id\":\"https:\/\/mobisoftinfotech.com\/resources\/blog\/android\/call-log-deletion-in-android#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/mobisoftinfotech.com\/resources\/blog\/android\/call-log-deletion-in-android\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/mobisoftinfotech.com\/resources\/blog\/android\/call-log-deletion-in-android#primaryimage\",\"url\":\"https:\/\/mobisoftinfotech.com\/resources\/wp-content\/uploads\/2018\/12\/Android-Market-apk-1.png\",\"contentUrl\":\"https:\/\/mobisoftinfotech.com\/resources\/wp-content\/uploads\/2018\/12\/Android-Market-apk-1.png\",\"width\":855,\"height\":363,\"caption\":\"Android Market apk\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/mobisoftinfotech.com\/resources\/blog\/android\/call-log-deletion-in-android#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/mobisoftinfotech.com\/resources\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Call log deletion in Android\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/mobisoftinfotech.com\/resources\/#website\",\"url\":\"https:\/\/mobisoftinfotech.com\/resources\/\",\"name\":\"Mobisoft Infotech\",\"description\":\"Discover Mobility\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/mobisoftinfotech.com\/resources\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/mobisoftinfotech.com\/resources\/#\/schema\/person\/f93f0fab572d08184f6a74157119a20c\",\"name\":\"Akram\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/secure.gravatar.com\/avatar\/bb474064e2ca5255dd86a26a365132ab89a939ec88ddd46914fc9de3b6d8a2af?s=96&r=g\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/bb474064e2ca5255dd86a26a365132ab89a939ec88ddd46914fc9de3b6d8a2af?s=96&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/bb474064e2ca5255dd86a26a365132ab89a939ec88ddd46914fc9de3b6d8a2af?s=96&r=g\",\"caption\":\"Akram\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Call log deletion in Android - Mobisoft Infotech","description":"Click here for the source code in order to delete a call log entry in Android device.The Call Log provider contains information about calls.","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:\/\/mobisoftinfotech.com\/resources\/blog\/android\/call-log-deletion-in-android","og_locale":"en_US","og_type":"article","og_title":"Call log deletion in Android - Mobisoft Infotech","og_description":"Click here for the source code in order to delete a call log entry in Android device.The Call Log provider contains information about calls.","og_url":"https:\/\/mobisoftinfotech.com\/resources\/blog\/android\/call-log-deletion-in-android","og_site_name":"Mobisoft Infotech","article_published_time":"2010-05-27T04:30:54+00:00","article_modified_time":"2025-10-31T07:04:22+00:00","og_image":[{"width":855,"height":363,"url":"https:\/\/mobisoftinfotech.com\/resources\/wp-content\/uploads\/2018\/12\/Android-Market-apk-1.png","type":"image\/png"}],"author":"Akram","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Akram","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/mobisoftinfotech.com\/resources\/blog\/android\/call-log-deletion-in-android#article","isPartOf":{"@id":"https:\/\/mobisoftinfotech.com\/resources\/blog\/android\/call-log-deletion-in-android"},"author":{"name":"Akram","@id":"https:\/\/mobisoftinfotech.com\/resources\/#\/schema\/person\/f93f0fab572d08184f6a74157119a20c"},"headline":"Call log deletion in Android","datePublished":"2010-05-27T04:30:54+00:00","dateModified":"2025-10-31T07:04:22+00:00","mainEntityOfPage":{"@id":"https:\/\/mobisoftinfotech.com\/resources\/blog\/android\/call-log-deletion-in-android"},"wordCount":333,"commentCount":0,"image":{"@id":"https:\/\/mobisoftinfotech.com\/resources\/blog\/android\/call-log-deletion-in-android#primaryimage"},"thumbnailUrl":"https:\/\/mobisoftinfotech.com\/resources\/wp-content\/uploads\/2018\/12\/Android-Market-apk-1.png","keywords":["Call Log"],"articleSection":["Android"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/mobisoftinfotech.com\/resources\/blog\/android\/call-log-deletion-in-android#respond"]}]},{"@type":"WebPage","@id":"https:\/\/mobisoftinfotech.com\/resources\/blog\/android\/call-log-deletion-in-android","url":"https:\/\/mobisoftinfotech.com\/resources\/blog\/android\/call-log-deletion-in-android","name":"Call log deletion in Android - Mobisoft Infotech","isPartOf":{"@id":"https:\/\/mobisoftinfotech.com\/resources\/#website"},"primaryImageOfPage":{"@id":"https:\/\/mobisoftinfotech.com\/resources\/blog\/android\/call-log-deletion-in-android#primaryimage"},"image":{"@id":"https:\/\/mobisoftinfotech.com\/resources\/blog\/android\/call-log-deletion-in-android#primaryimage"},"thumbnailUrl":"https:\/\/mobisoftinfotech.com\/resources\/wp-content\/uploads\/2018\/12\/Android-Market-apk-1.png","datePublished":"2010-05-27T04:30:54+00:00","dateModified":"2025-10-31T07:04:22+00:00","author":{"@id":"https:\/\/mobisoftinfotech.com\/resources\/#\/schema\/person\/f93f0fab572d08184f6a74157119a20c"},"description":"Click here for the source code in order to delete a call log entry in Android device.The Call Log provider contains information about calls.","breadcrumb":{"@id":"https:\/\/mobisoftinfotech.com\/resources\/blog\/android\/call-log-deletion-in-android#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/mobisoftinfotech.com\/resources\/blog\/android\/call-log-deletion-in-android"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/mobisoftinfotech.com\/resources\/blog\/android\/call-log-deletion-in-android#primaryimage","url":"https:\/\/mobisoftinfotech.com\/resources\/wp-content\/uploads\/2018\/12\/Android-Market-apk-1.png","contentUrl":"https:\/\/mobisoftinfotech.com\/resources\/wp-content\/uploads\/2018\/12\/Android-Market-apk-1.png","width":855,"height":363,"caption":"Android Market apk"},{"@type":"BreadcrumbList","@id":"https:\/\/mobisoftinfotech.com\/resources\/blog\/android\/call-log-deletion-in-android#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/mobisoftinfotech.com\/resources\/"},{"@type":"ListItem","position":2,"name":"Call log deletion in Android"}]},{"@type":"WebSite","@id":"https:\/\/mobisoftinfotech.com\/resources\/#website","url":"https:\/\/mobisoftinfotech.com\/resources\/","name":"Mobisoft Infotech","description":"Discover Mobility","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/mobisoftinfotech.com\/resources\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/mobisoftinfotech.com\/resources\/#\/schema\/person\/f93f0fab572d08184f6a74157119a20c","name":"Akram","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/bb474064e2ca5255dd86a26a365132ab89a939ec88ddd46914fc9de3b6d8a2af?s=96&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/bb474064e2ca5255dd86a26a365132ab89a939ec88ddd46914fc9de3b6d8a2af?s=96&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/bb474064e2ca5255dd86a26a365132ab89a939ec88ddd46914fc9de3b6d8a2af?s=96&r=g","caption":"Akram"}}]}},"_links":{"self":[{"href":"https:\/\/mobisoftinfotech.com\/resources\/wp-json\/wp\/v2\/posts\/4201","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/mobisoftinfotech.com\/resources\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/mobisoftinfotech.com\/resources\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/mobisoftinfotech.com\/resources\/wp-json\/wp\/v2\/users\/21"}],"replies":[{"embeddable":true,"href":"https:\/\/mobisoftinfotech.com\/resources\/wp-json\/wp\/v2\/comments?post=4201"}],"version-history":[{"count":29,"href":"https:\/\/mobisoftinfotech.com\/resources\/wp-json\/wp\/v2\/posts\/4201\/revisions"}],"predecessor-version":[{"id":44617,"href":"https:\/\/mobisoftinfotech.com\/resources\/wp-json\/wp\/v2\/posts\/4201\/revisions\/44617"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/mobisoftinfotech.com\/resources\/wp-json\/wp\/v2\/media\/14134"}],"wp:attachment":[{"href":"https:\/\/mobisoftinfotech.com\/resources\/wp-json\/wp\/v2\/media?parent=4201"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/mobisoftinfotech.com\/resources\/wp-json\/wp\/v2\/categories?post=4201"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/mobisoftinfotech.com\/resources\/wp-json\/wp\/v2\/tags?post=4201"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}