Souljar Mind Academy
|Subscribers
Latest videos
BEWARE : An Evil Woman Sent By Satan Will Be Marked By…
In this video it shows simple steps of how to create your own custom browser App in Android.
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.
I hope you like this video. For any questions, suggestions or appreciation please contact us at: https://programmerworld.co/contact/ or email at: programmerworld1990@gmail.com
Complete source code and other details/ steps of this video are posted in the below link:
https://programmerworld.co/and....roid/how-to-create-y
However, the main Java code is copied below also for reference:
package com.programmerworld.custombrowserapp;
import androidx.appcompat.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.webkit.WebView;
import android.webkit.WebViewClient;
import android.widget.EditText;
public class MainActivity extends AppCompatActivity {
private EditText editText;
private WebView webView;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
webView = findViewById(R.id.webView);
editText = findViewById(R.id.editText);
webView.setWebViewClient(new WebViewClient());
}
public void buttonGO_Browse(View view){
String stringURL = editText.getText().toString();
stringURL = "https://www."+stringURL;
webView.loadUrl(stringURL);
}
}
-
***Connect with me at: https://www.standard59.com
What does success look like for the Kingdom Man? How do you know what the will of God is for your life? Can a Christian man be successful? Many biblical men are confused and facing an inner struggle when it comes to pursuing success in life. In this episode we break down what it means to be successful. You will discover what the bible says about this topic and learn how to align with the will of God for your life.
***Get my book, ‘The Standard, Discovering Jesus as the Standard for Masculinity’, Get it on Amazon Here: https://www.amazon.com/Standar....d-Discovering-Jesus-
***Download your FREE copy of THE MAP and Get the 12 Strategies You Must Execute to Take Your Territory
https://www.standard59.com/THEMAP
Follow Josh on Social Media
https://www.instagram.com/kingdomathlete/
https://www.facebook.com/kingdomathlete