create account

Android App Development Series #1 - Basic Web Browser by ceruleanblue

View this thread on: hive.blogpeakd.comecency.com
· @ceruleanblue · (edited)
$18.72
Android App Development Series #1 - Basic Web Browser
#### <center>Android App Development Series #1 - Basic Web Browser</center>

#### Repository
https://github.com/aosp-mirror/platform_build

#### What Will I Learn?

- You will learn how to create 'activities', as well as launch them using 'intents'.
- You will learn some of the basic functions of the WebView, along with how to interact with the widget.
- You will learn how to use 'buttons', 'editTexts', and how to interact with all of these 'widgets' through the use of Java, as well as XML.

#### Requirements

- Basic knowledge of Java, and XML.
- Android Studio installed on your operating system of choice.
- A device to run the application within, can be a physical device, or a VM like the one included in Android Studio's 'Device Manager'.

#### Difficulty

- Basic

#### Tutorial Contents
In this tutorial, we will be creating our first android application. During this, we will learn about widgets, and views, and how to use them to create a very basic application, consisting of a web browser, an editText, as well as a few buttons. The first thing we will need to do is start up our Android Studio IDEs, and create a new project, with a blank activity.

## The Home Page:
The home page of this application, will be our activity_main.xml file, unless you have chosen to rename this. Usually on a home page for an android application, you will want to have a good background image, as well as a few navigational buttons. Lets create those now. The following code can be used to create an ImageView, as well as 4 Buttons, when placed properly in your xml file.

<center>![droid1.PNG](https://cdn.steemitimages.com/DQmW3cSEdEaKiUAzMLgh6TMv52VTGoJippNvhu2DPnbpR4h/droid1.PNG)<br>[Screenshot](https://cdn.steemitimages.com/DQmW3cSEdEaKiUAzMLgh6TMv52VTGoJippNvhu2DPnbpR4h/droid1.PNG)</center>



    <ImageView
        android:id="@+id/imageView"
        android:layout_width="match_parent"
        android:layout_height="255dp"
        android:layout_alignParentStart="true"
        android:layout_alignParentTop="true"
        app:srcCompat="@android:drawable/sym_def_app_icon" />
        
The last line of this can be changed/removed, should you want to use a different image or icon. This bit of code here will create one ImageView widget, located in the top of the screen. The following bit of code is used to create a button.

    <Button
        android:id="@+id/buttonBrowser"
        android:layout_width="match_parent"
        android:layout_height="63dp"
        android:layout_alignParentStart="true"
        android:layout_below="@+id/imageView"
        android:layout_marginStart="0dp"
        android:layout_marginTop="6dp"
        android:text="BROWSER" />
        
It is now up to you, to create as many buttons as you like. I have created four, as I have some decent plans for this app that we are working on right now, but you will only need the one button to complete this tutorial with me. 

## The Browser Activity:
We will now need to create a new blank activity. This will be the activity that contains our web browser, and will be launched from our activity_main.

In this activity, we will be using 2 Buttons, as well as an EditText, and a WebBrowserView. I will show you how to set them up, in the following bits of code.

    <WebView
        android:id="@+id/browser"
        android:layout_width="match_parent"
        android:layout_height="418dp"
        android:layout_alignParentBottom="true"
        android:layout_alignParentStart="true" />

    <Button
        android:id="@+id/buttonBack"
        android:layout_width="190dp"
        android:layout_height="wrap_content"
        android:layout_alignParentStart="true"
        android:layout_alignParentTop="true"
        android:text="Back" />
        
So to break things up a bit, the first two sections of code, directly above this paragraph, are responsible for displaying both a WebView, as well as a Button. The following two sections, assemble another Button, and an EditText that we will use as our address bar.

    <Button
        android:id="@+id/buttonForward"
        android:layout_width="192dp"
        android:layout_height="wrap_content"
        android:layout_alignParentEnd="true"
        android:layout_alignParentTop="true"
        android:text="Forward" />

    <EditText
        android:id="@+id/adressBar"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentStart="true"
        android:layout_below="@+id/buttonBack"
        android:ems="10"
        android:inputType="textPersonName"
        android:text="Address Bar" />
        
## Putting Together the Home Page - activity_main.java:

This .java file,is where we will store our code that will cause the actual interactions, between the user, the main UI, and the hardware. Our Home page is incredibly simple at the current moment, as this tutorial is simply designed to teach launching intents, and using the web browser, as well as a few other basic widgets. For now, all we will need to do on this page, is declare our Button that we will use to launch the activity, and then initialize what is known as an 'onClickListener', which will simply listen for when the button is pressed.

Once pressed, we want the button to create a new 'Intent', which is a way of sending data between activities/applications, and finally launch that intent, bringing us to our browser page. The following code can be used to do just this, when placed in the appropriate position, in the onCreate function of our activity_main.java files.

        Button buttonBrowse = (Button)findViewById(R.id.buttonBrowser);

        buttonBrowse.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                Intent LaunchBrowser = new Intent (MainActivity.this, browser.class);
                startActivity(LaunchBrowser);

Once this code has been added, clicking on our Browser Button, will send us to our Browser activity. Unfortunately that does absolutely nothing at the current moment, so we will need to head over to our browser.java file, and set some things up there.

## Putting Together the Browser Activity - browser.java:
Alright, this is where things get a bit trickier. In our browser, we want it to be able to navigate back and forward, so we will need to set up some simple navigation buttons. We also would like to display the URL of the web page that we are currently visiting, so we will be using an EditText for that, though you could use another few different widgets to accomplish this feature. 

Aside from that, we will also need to have some control over our WebView. To interact with all of these Views/Widgets, we will need to initialize them in our .java file. The following four lines of code does just that, and should be placed at the beginning of the onCreate function - directly below setContentView.

        Button buttonBack = (Button)findViewById(R.id.buttonBack);
        Button buttonForward = (Button)findViewById(R.id.buttonForward);
        final EditText addressbar = (EditText)findViewById(R.id.adressBar);
        final WebView browser = (WebView)findViewById(R.id.browser);
        
In the next few lines of code, we will want to set up how our browser handles data, things like Javascript, Storage, etc. These lines can go directly below the previous four.

        final WebSettings ws = browser.getSettings();
        ws.setJavaScriptEnabled(true);
        ws.setDomStorageEnabled(true);
        browser.setOverScrollMode(WebView.OVER_SCROLL_NEVER);

This last paragraph gives us a settings object to work with, as well as allows us to use javascript, and sets scrolling capabilities, as well as another boolean we need to set true in order to retain javascript functionality across various situations.

After this has been set up, we will need to create a 'WebClient' and we will be using ChromeWebClient, as google=awesome, and I like chrome :P Aside from this, we will need to 'override' some of its main operations. The following bit of code can go below the previous, in your browser.java files.


        browser.setWebChromeClient(new WebChromeClient(){
        
            @Override
            public void onReceivedTitle(WebView view, String title) {
                super.onReceivedTitle(view, title);
                addressbar.setText(browser.getUrl().toString());
            }
        });
        
This last segment of code, creates/enables a 'WebClient', as well as overrides one of its main operations - the onReceivedTitle function. In this override, we set the text of the address bar whenever the function is called, with the new URL of the page we are visiting.

Next we want to ensure that the URL is set to the EditText, from the beginning of the onCreate call, and we can do that with a few simple lines as well.

        browser.loadUrl("https://steemit.com/@ceruleanblue");
        addressbar.setText(browser.getUrl().toString());
        
I figure this browser will only be designed to browse Steemit for now, as I mentioned earlier, I do have several plans for the end game of this application. Finally, we are at the last steps of this 'app' haha if you can call it that. We will need to add to a couple of onClickListeners, to our 'back', and 'forwards' buttons. The next two fragments of code, do exactly that.

        buttonBack.setOnClickListener(new View.OnClickListener() {

            @Override
            public void onClick(View view) {
                if (browser.canGoBack()) {
                    browser.goBack();
                    addressbar.setText(browser.getUrl().toString());
                } else {
                    finish();
                }

            }
        });
        
        buttonForward.setOnClickListener(new View.OnClickListener() {

            @Override
            public void onClick(View view) {
                if (browser.canGoForward()) {
                    browser.goForward();
                    addressbar.setText(browser.getUrl().toString());
                } else {
                    finish();
                }

            }
        });

<br>When either of these buttons are selected during a run, the browser will now go back or forward, in response to the associated button. 

<center>![droid2.PNG](https://cdn.steemitimages.com/DQmatQfiBzp3HhEVpqVDJn5aVfjAFSbf3XhEuCeyyngnJ7R/droid2.PNG)<br>[Screenshot](https://cdn.steemitimages.com/DQmatQfiBzp3HhEVpqVDJn5aVfjAFSbf3XhEuCeyyngnJ7R/droid2.PNG)</center>



## Conclusion:

If you have been following along with this tutorial, you have learnt a few different basics in android programming with java, such as the setText function, as well as how to implement onClickListeners, and much more. The premise for the widgets that you have learnt about in this tutorial, can usually be easily applied to other widgets of the same sort.

For now, we have a simple application, with some basic web browsing capabilities, but I have a few different ideas that could make this project into a kinda fun Steemit/Busy tool, depending how things play out from here. I hope this has been educational, and enjoyable for you beginners out there. Android programming is becoming more and more popular each day, so why not start learning now right? :)

Happy Hunting, 
Cerulean





#### Curriculum
This is the first release, in what I hope will be a rather long-running series of android application development.


#### Proof of Work Done
###### https://github.com/cerulean-skies/android-app-development-series/blob/master/Series%20%231.md
πŸ‘  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 151 others
properties (23)
authorceruleanblue
permlinkandroid-app-development-series-1-basic-web-browser
categoryutopian-io
json_metadata{"tags":["utopian-io","tutorials","steemstem","steemdevs","technology"],"image":["https://cdn.steemitimages.com/DQmW3cSEdEaKiUAzMLgh6TMv52VTGoJippNvhu2DPnbpR4h/droid1.PNG","https://cdn.steemitimages.com/DQmatQfiBzp3HhEVpqVDJn5aVfjAFSbf3XhEuCeyyngnJ7R/droid2.PNG"],"links":["https://github.com/aosp-mirror/platform_build","https://cdn.steemitimages.com/DQmW3cSEdEaKiUAzMLgh6TMv52VTGoJippNvhu2DPnbpR4h/droid1.PNG","https://cdn.steemitimages.com/DQmatQfiBzp3HhEVpqVDJn5aVfjAFSbf3XhEuCeyyngnJ7R/droid2.PNG","https://github.com/cerulean-skies/android-app-development-series/blob/master/Series%20%231.md"],"app":"steemit/0.1","format":"markdown"}
created2018-08-07 12:25:39
last_update2018-08-07 14:10:06
depth0
children18
last_payout2018-08-14 12:25:39
cashout_time1969-12-31 23:59:59
total_payout_value14.229 HBD
curator_payout_value4.495 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length11,597
author_reputation3,400,370,914,590
root_title"Android App Development Series #1 - Basic Web Browser"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd0
post_id67,404,051
net_rshares12,829,569,200,572
author_curate_reward""
vote details (215)
@alexbiojs ·
$0.03
Hi. there's a contest - "Pay it forward". the purpose is to promote people with reputation 55 or lower with big potential. I featured your blog:
https://steemit.com/payitforward/@alexbiojs/pay-it-forward-hello-world-19-week      / or you can search for "Pay it forward: "Hello World!" (19 week)", my post.
Be ready to reply some comments under your post from judges or other participants.
There will be some little prizes for the winners :)
πŸ‘  ,
properties (23)
authoralexbiojs
permlinkre-ceruleanblue-android-app-development-series-1-basic-web-browser-20180809t205343612z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"links":["https://steemit.com/payitforward/@alexbiojs/pay-it-forward-hello-world-19-week"],"app":"steemit/0.1"}
created2018-08-09 20:53:48
last_update2018-08-09 20:53:48
depth1
children3
last_payout2018-08-16 20:53:48
cashout_time1969-12-31 23:59:59
total_payout_value0.020 HBD
curator_payout_value0.005 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length440
author_reputation22,006,118,220,423
root_title"Android App Development Series #1 - Basic Web Browser"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id67,681,730
net_rshares20,111,310,073
author_curate_reward""
vote details (2)
@ceruleanblue ·
Yes, That is awesome! Thanks a bunch Alex, I have noticed you supporting many of my posts recently and I've always hoped for a chance to show my appreciation :) You're an awesome guy!
properties (22)
authorceruleanblue
permlinkre-alexbiojs-re-ceruleanblue-android-app-development-series-1-basic-web-browser-20180811t104909557z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-08-11 10:49:12
last_update2018-08-11 10:49:12
depth2
children0
last_payout2018-08-18 10:49:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length183
author_reputation3,400,370,914,590
root_title"Android App Development Series #1 - Basic Web Browser"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd0
post_id67,844,844
net_rshares0
@pifc ·
$0.03
Going to need to come back to this post with my oldest and see if she has an interest in learning this. She tends to like to learn how things work and this looks like it would be right up her ally. 

@alexbiojs thanks for featuring  @ceruleanblue.
πŸ‘  ,
properties (23)
authorpifc
permlinkre-alexbiojs-re-ceruleanblue-android-app-development-series-1-basic-web-browser-20180811t045820207z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["alexbiojs","ceruleanblue"],"app":"steemit/0.1"}
created2018-08-11 04:58:21
last_update2018-08-11 04:58:21
depth2
children1
last_payout2018-08-18 04:58:21
cashout_time1969-12-31 23:59:59
total_payout_value0.024 HBD
curator_payout_value0.006 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length247
author_reputation52,487,407,379,039
root_title"Android App Development Series #1 - Basic Web Browser"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id67,821,921
net_rshares23,292,537,202
author_curate_reward""
vote details (2)
@ceruleanblue ·
I think this is an excellent way to start! Thanks for dropping a note :)
properties (22)
authorceruleanblue
permlinkre-pifc-re-alexbiojs-re-ceruleanblue-android-app-development-series-1-basic-web-browser-20180811t105247507z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-08-11 10:52:51
last_update2018-08-11 10:52:51
depth3
children0
last_payout2018-08-18 10:52:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length72
author_reputation3,400,370,914,590
root_title"Android App Development Series #1 - Basic Web Browser"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd0
post_id67,845,068
net_rshares0
@cicisaja ·
I wish I had learn about programming when I was young😯 I can't understand any of thus tutorials even though you've written it simply and easy.. my bad 😊 I just like to try the app when you're done develop it later.. keep up the good workπŸ’ͺ
properties (22)
authorcicisaja
permlinkre-ceruleanblue-2018811t224350337z
categoryutopian-io
json_metadata{"tags":["utopian-io","tutorials","steemstem","steemdevs","technology"],"app":"esteem/1.6.0","format":"markdown+html","community":"esteem"}
created2018-08-11 15:44:00
last_update2018-08-11 15:44:00
depth1
children0
last_payout2018-08-18 15:44:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length238
author_reputation30,019,786,748,542
root_title"Android App Development Series #1 - Basic Web Browser"
beneficiaries
0.
accountesteemapp
weight1,000
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id67,868,436
net_rshares0
@lynncoyle1 ·
Thank you for the tutorial @ceruleanblue; I love seeing helpful, giving posts such as this :)

I found your post because  @alexbiojs featured you in an entry to our Pay it Forward [contest](https://steemit.com/payitforward/@pifc/week-19-pay-it-forward-curation-contest-92fbc29bace4cest).  You are more than welcome to join us next week with an entry of your own :)
properties (22)
authorlynncoyle1
permlinkre-ceruleanblue-android-app-development-series-1-basic-web-browser-20180812t001843416z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["ceruleanblue","alexbiojs"],"links":["https://steemit.com/payitforward/@pifc/week-19-pay-it-forward-curation-contest-92fbc29bace4cest"],"app":"steemit/0.1"}
created2018-08-12 00:18:48
last_update2018-08-12 00:18:48
depth1
children0
last_payout2018-08-19 00:18:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length364
author_reputation19,836,520,086,359
root_title"Android App Development Series #1 - Basic Web Browser"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id67,902,653
net_rshares0
@macoolette ·
I am in the IT operations field and not on systems development so I am not well versed with specific programming languages. But with all your effort and patience in coming up with this tutorial, plus I see that you plan to run a curriculum, that is very good of you! Thank you for sharing your knowledge. Keep blogging...😊
πŸ‘  
properties (23)
authormacoolette
permlinkre-ceruleanblue-android-app-development-series-1-basic-web-browser-20180810t022924613z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-08-10 02:29:27
last_update2018-08-10 02:29:27
depth1
children2
last_payout2018-08-17 02:29:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length322
author_reputation181,707,763,849,057
root_title"Android App Development Series #1 - Basic Web Browser"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id67,704,884
net_rshares2,627,538,760
author_curate_reward""
vote details (1)
@ceruleanblue ·
I don't code professionally either aside from the odd task, but it is definitely a fun hobby of mine! Glad to hear you enjoyed, and thanks for the good vibes!
properties (22)
authorceruleanblue
permlinkre-macoolette-re-ceruleanblue-android-app-development-series-1-basic-web-browser-20180811t105052449z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-08-11 10:50:54
last_update2018-08-11 10:50:54
depth2
children1
last_payout2018-08-18 10:50:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length158
author_reputation3,400,370,914,590
root_title"Android App Development Series #1 - Basic Web Browser"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd0
post_id67,844,944
net_rshares0
@macoolette ·
Wow, that is so tech-y for a hobby! 😊

You're welcome. 😊
properties (22)
authormacoolette
permlinkre-ceruleanblue-re-macoolette-re-ceruleanblue-android-app-development-series-1-basic-web-browser-20180811t132921625z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-08-11 13:29:24
last_update2018-08-11 13:29:24
depth3
children0
last_payout2018-08-18 13:29:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length56
author_reputation181,707,763,849,057
root_title"Android App Development Series #1 - Basic Web Browser"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id67,856,747
net_rshares0
@movingman ·
Real anarchy at its best! share share share and store on blockchain for all to see! Very interesting mate :)
properties (22)
authormovingman
permlinkre-ceruleanblue-android-app-development-series-1-basic-web-browser-20180813t201029687z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-08-13 20:10:30
last_update2018-08-13 20:10:30
depth1
children0
last_payout2018-08-20 20:10:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length108
author_reputation116,183,427,837,267
root_title"Android App Development Series #1 - Basic Web Browser"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id68,093,691
net_rshares0
@portugalcoin ·
$0.03
Thank you for your contribution.
While I liked the content of your contribution, I would still like to extend one advice for your upcoming contributions: 

- Nice work on the explanations of your code, although adding a bit more comments to the code can be helpful as well

Your contribution has been evaluated according to [Utopian policies and guidelines](https://join.utopian.io/guidelines), as well as a predefined set of questions pertaining to the category.

To view those questions and the relevant answers related to your post, [click here](https://review.utopian.io/result/8/21323434).

---- 
Need help? Write a ticket on https://support.utopian.io/. 
Chat with us on [Discord](https://discord.gg/uTyJkNm). 
[[utopian-moderator]](https://join.utopian.io/)
πŸ‘  , ,
properties (23)
authorportugalcoin
permlinkre-ceruleanblue-android-app-development-series-1-basic-web-browser-20180807t215339915z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"links":["https://join.utopian.io/guidelines","https://review.utopian.io/result/8/21323434","https://support.utopian.io/","https://discord.gg/uTyJkNm","https://join.utopian.io/"],"app":"steemit/0.1"}
created2018-08-07 21:53:39
last_update2018-08-07 21:53:39
depth1
children0
last_payout2018-08-14 21:53:39
cashout_time1969-12-31 23:59:59
total_payout_value0.021 HBD
curator_payout_value0.004 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length764
author_reputation599,441,784,993,714
root_title"Android App Development Series #1 - Basic Web Browser"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id67,456,193
net_rshares18,706,534,444
author_curate_reward""
vote details (3)
@sargoon ·
Very nice tutorial @ceruleanblue, nice work. I'm looking forward to the next development-tutorials in your series.
πŸ‘  
properties (23)
authorsargoon
permlinkre-ceruleanblue-android-app-development-series-1-basic-web-browser-20180807t124053765z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["ceruleanblue"],"app":"steemit/0.1"}
created2018-08-07 12:40:54
last_update2018-08-07 12:40:54
depth1
children1
last_payout2018-08-14 12:40:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length114
author_reputation62,586,788,362,329
root_title"Android App Development Series #1 - Basic Web Browser"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id67,405,520
net_rshares1,493,677,503
author_curate_reward""
vote details (1)
@ceruleanblue ·
Thanks buddy! Always happy to hear that, and even better to hear it from you! Will do my best to keep in fun for ya.
πŸ‘  
properties (23)
authorceruleanblue
permlinkre-sargoon-re-ceruleanblue-android-app-development-series-1-basic-web-browser-20180807t124342208z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-08-07 12:43:42
last_update2018-08-07 12:43:42
depth2
children0
last_payout2018-08-14 12:43:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length116
author_reputation3,400,370,914,590
root_title"Android App Development Series #1 - Basic Web Browser"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd0
post_id67,405,795
net_rshares8,287,745,439
author_curate_reward""
vote details (1)
@steemstem ·
post_voted_by
<center> https://cdn.discordapp.com/attachments/354723995037466624/463380522928963599/steemSTEM.png</center> <br><br> This post has been voted on by the steemstem curation team and voting trail.  <br> <br>There is more to SteemSTEM than just writing posts, check <a href="https://steemit.com/steemstem/@steemstem/being-a-member-of-the-steemstem-community">here</a> for some more tips on being a community member. You can also join our discord <a href="https://discord.gg/BPARaqn">here</a> to get to know the rest of the community!
properties (22)
authorsteemstem
permlinkre-android-app-development-series-1-basic-web-browser-20180808t004852
categoryutopian-io
json_metadata""
created2018-08-08 00:48:51
last_update2018-08-08 00:48:51
depth1
children0
last_payout2018-08-15 00:48:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length530
author_reputation262,017,435,115,313
root_title"Android App Development Series #1 - Basic Web Browser"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id67,469,065
net_rshares0
@utopian-io ·
$0.02
Hey @ceruleanblue
**Thanks for contributing on Utopian**.
We’re already looking forward to your next contribution!

**Want to chat? Join us on Discord https://discord.gg/h52nFrV.**

<a href='https://v2.steemconnect.com/sign/account-witness-vote?witness=utopian-io&approve=1'>Vote for Utopian Witness!</a>
πŸ‘  ,
properties (23)
authorutopian-io
permlinkre-android-app-development-series-1-basic-web-browser-20180812t070009z
categoryutopian-io
json_metadata"{"app": "beem/0.19.42"}"
created2018-08-12 07:00:09
last_update2018-08-12 07:00:09
depth1
children0
last_payout2018-08-19 07:00:09
cashout_time1969-12-31 23:59:59
total_payout_value0.019 HBD
curator_payout_value0.004 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length304
author_reputation152,955,367,999,756
root_title"Android App Development Series #1 - Basic Web Browser"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id67,926,374
net_rshares17,926,991,842
author_curate_reward""
vote details (2)
@wolfhart · (edited)
I came to your post because @alexbiojs featured you in his entry to our Pay if Forward Curation Contest.
πŸ‘  
properties (23)
authorwolfhart
permlinkre-ceruleanblue-android-app-development-series-1-basic-web-browser-20180811t035703157z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["alexbiojs"],"app":"steemit/0.1"}
created2018-08-11 03:57:03
last_update2018-08-11 04:00:42
depth1
children2
last_payout2018-08-18 03:57:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length104
author_reputation17,410,482,134,249
root_title"Android App Development Series #1 - Basic Web Browser"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id67,818,095
net_rshares2,572,222,154
author_curate_reward""
vote details (1)
@ceruleanblue ·
Thanks @wolfhart, its awesome to be getting all this attention. Will have to check out this Pay it Forward contest. Have not heard of it yet, but sounds quite useful for all. :)
πŸ‘  
properties (23)
authorceruleanblue
permlinkre-wolfhart-re-ceruleanblue-android-app-development-series-1-basic-web-browser-20180811t105201701z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["wolfhart"],"app":"steemit/0.1"}
created2018-08-11 10:52:03
last_update2018-08-11 10:52:03
depth2
children1
last_payout2018-08-18 10:52:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length177
author_reputation3,400,370,914,590
root_title"Android App Development Series #1 - Basic Web Browser"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd0
post_id67,845,022
net_rshares4,696,844,433
author_curate_reward""
vote details (1)
@wolfhart ·
It is a great project that highlights those who need more exposure
properties (22)
authorwolfhart
permlinkre-ceruleanblue-re-wolfhart-re-ceruleanblue-android-app-development-series-1-basic-web-browser-20180812t012643635z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-08-12 01:26:42
last_update2018-08-12 01:26:42
depth3
children0
last_payout2018-08-19 01:26:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length66
author_reputation17,410,482,134,249
root_title"Android App Development Series #1 - Basic Web Browser"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id67,906,368
net_rshares0