<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:media="http://search.yahoo.com/mrss/" version="2.0">
  <channel>
    <title>Choppinglife - The Shining Light Network</title>
    <link>https://choppinglife.com</link>
    <description>Communicating Good Life to beautify Young Minds. Watch Divinely Inspired Creativity, Gospel Music Videos, latest Sermons, Inspirational Videos, Christian movies, comedy videos, short video that Inspire You for a Joyful, Healthy and Prosperous Living. Our mission is to feed  &amp;lt;br&amp;gt;Young minds with Life-given Knowledge for renewal and transformation.</description>
    <item>
      <title>How to create your own custom browser Android App? - Android Studio code</title>
      <link>https://choppinglife.com/watch/how-to-create-your-own-custom-browser-android-app-android-studio-code_KqB1UrIaNzhyUuG.html</link>
      <pubDate>Mon, 24 Jun 2024 10:17:18 +0000</pubDate>
      <guid isPermaLink="true">https://choppinglife.com/watch/how-to-create-your-own-custom-browser-android-app-android-studio-code_KqB1UrIaNzhyUuG.html</guid>
      <description>In this video it shows simple steps of how to create your own custom browser App in Android. &lt;br&gt; &lt;br&gt;It uses WebView to create the web browser layout and then registers it as web client in your App. It further uses loadUrl method to load the url in the webview making it your own browser App. &lt;br&gt; &lt;br&gt; &lt;br&gt;I hope you like this video. For any questions, suggestions or appreciation please contact us at: &lt;a href="https://programmerworld.co/contact/" target="_blank" class="hash" rel="nofollow"&gt;https://programmerworld.co/contact/&lt;/a&gt; or email at: programmerworld1990@gmail.com &lt;br&gt; &lt;br&gt;Complete source code and other details/ steps of this video are posted in the below link: &lt;br&gt;&lt;a href="https://programmerworld.co/android/how-to-create-your-own-custom-browser-android-app-android-studio-code/" target="_blank" class="hash" rel="nofollow"&gt;https://programmerworld.co/and....roid/how-to-create-y&lt;/a&gt; &lt;br&gt; &lt;br&gt;However, the main Java code is copied below also for reference: &lt;br&gt; &lt;br&gt;package com.programmerworld.custombrowserapp; &lt;br&gt; &lt;br&gt;import androidx.appcompat.app.AppCompatActivity; &lt;br&gt; &lt;br&gt;import android.os.Bundle; &lt;br&gt;import android.view.View; &lt;br&gt;import android.webkit.WebView; &lt;br&gt;import android.webkit.WebViewClient; &lt;br&gt;import android.widget.EditText; &lt;br&gt; &lt;br&gt;public class MainActivity extends AppCompatActivity { &lt;br&gt; &lt;br&gt;    private EditText editText; &lt;br&gt;    private WebView webView; &lt;br&gt; &lt;br&gt;    @Override &lt;br&gt;    protected void onCreate(Bundle savedInstanceState) { &lt;br&gt;        super.onCreate(savedInstanceState); &lt;br&gt;        setContentView(R.layout.activity_main); &lt;br&gt; &lt;br&gt;        webView = findViewById(R.id.webView); &lt;br&gt;        editText = findViewById(R.id.editText); &lt;br&gt;        webView.setWebViewClient(new WebViewClient()); &lt;br&gt;    } &lt;br&gt; &lt;br&gt;    public void buttonGO_Browse(View view){ &lt;br&gt;        String stringURL = editText.getText().toString(); &lt;br&gt;        stringURL = &amp;quot;https://www.&amp;quot;+stringURL; &lt;br&gt;         &lt;br&gt;        webView.loadUrl(stringURL); &lt;br&gt;    } &lt;br&gt;} &lt;br&gt; &lt;br&gt;-</description>
      <media:thumbnail url="https://i.ytimg.com/vi/s4EFdLL68ko/maxresdefault.jpg"/>
    </item>
  </channel>
</rss>
