Greetings to my favorite science community online, StemSocial. It's been about two days since I posted a blog about my series on Android App development tutorials for beginners. I was fully engaged in a whole lot of other events so I couldn't really work on Hive. However, I'm thrilled to be back to continue my series. Because I have skipped two days on the calendar, in a funny way I have been inspired to share a tutorial blog on how to build an Android Calendar App. [Original Image Source](https://pixabay.com/photos/code-coding-computer-data-1839406/) by Pexels from Pixabay Calenders are very necessary not just for remembering or marking dates but also as a way to remind as of important events ahead of us. As part of the process in developing a reminder app, we would definitely need to build calendar. > Let's get started with today's blog shall we  ### Setting Up Your Project Please ensure that you have successfully installed Android Studio and Java Development Kit, JDK on your computer to be able to build the calender App. As we've been doing with all our blogs in the past, we'll start by creating a new Android Studio project and also configure the necessary dependencies in the `build.gradle` file. In order to build a fully functional Calendar application, we would need certain API services which would require us to use the following dependencies in our project. > Here's the codes to add to the `build.gradle` file. ```gradle implementation 'com.google.android.material:material:1.4.0' implementation 'androidx.recyclerview:recyclerview:1.2.1' ``` After adding the dependencies, a sync button will appear at the top of your Android Studio screen. Click on that button to sync the dependencies.  ### Designing the UI Now that we're through with setting up the project and adding the dependencies, it's time to work on the front end or design part of our calendar aop Since it's still tutorial of the basics of Android App development, we'll design a simple user interface for the Calendar App. The design part or development of the frontend layout will be done in the `activity_main.xml` file. We'll use a `RecyclerView` element to display the calendar events. > Here's how your code should look like ```xml <!-- activity_main.xml --> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical"> <androidx.recyclerview.widget.RecyclerView android:id="@+id/recyclerView" android:layout_width="match_parent" android:layout_height="wrap_content"/> </LinearLayout> ```  ### Creating a Data Model In order for us to have a working Calendar, we would need to define a data model for the calendar events We'll create a java class file to do this. Let's name the file `EventModel`. The purpose of this class is to represent each event with its title, date, and other relevant details. > Here's how your code should look like ```java // EventModel.java public class EventModel { private String title; private Date date; // Constructor, getters, and setters } ```  ### Implementing RecyclerView Adapter We now have to create a custom adapter class for the `RecyclerView`. This class will handle the list of events. What the adapter will do is to inflate the layout for each item and bind data to the views. It's a pretty simple code guys and this step is really necessary in making show that the calendar data shows. > Here's how your code should look like inside the calendar adapter class ```java // CalendarAdapter.java public class CalendarAdapter extends RecyclerView.Adapter<CalendarAdapter.ViewHolder> { private List<EventModel> events; // Constructor and methods static class ViewHolder extends RecyclerView.ViewHolder { TextView titleTextView; TextView dateTextView; ViewHolder(View itemView) { super(itemView); titleTextView = itemView.findViewById(R.id.titleTextView); dateTextView = itemView.findViewById(R.id.dateTextView); } } } ```  ### Populate RecyclerView We would need to populate the Recycleview and that step will be done inside the `MainActivity.java` file. The code below will do a couple thimgs including initializing the RecyclerView, creating a list of events, and setting up the adapter. ```java // MainActivity.java public class MainActivity extends AppCompatActivity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); RecyclerView recyclerView = findViewById(R.id.recyclerView); recyclerView.setLayoutManager(new LinearLayoutManager(this)); List<EventModel> events = generateDummyEvents(); // Implement this method to generate sample events CalendarAdapter adapter = new CalendarAdapter(events); recyclerView.setAdapter(adapter); } // Implement the method to generate sample events private List<EventModel> generateDummyEvents() { // Generate and return a list of sample events } } ```  ### Running The Calendar App Congratulations guys. We are done building our basic calender application. You can build and run the App either using a physical Android device or an emulator. Like I always keep promising, we will be rebuilding more advanced versions of these apps after we're through with the basics. In future updates, we will add functionalities like new events, deleting events, and navigating through the months in the calendar App. The Android Calendar API or third-party libraries can be used to handle date-related operations. Thank you so much for taking the time to read today's blog. I hope you enjoyed this tutorial guys. As always, if you're having a trouble installing Android Studio and JDK, writing the code or running the finished app, let me know in the comments section below and I'll be of help. > Have a lovely day and catch you next time on StemSocial. Goodbye ❤️ <center> You Can Follow Me @skyehi For More Like This And Others </center>
author | skyehi | ||||||
---|---|---|---|---|---|---|---|
permlink | how-to-build-an-android-calendar-app-hive-programmers | ||||||
category | hive-196387 | ||||||
json_metadata | {"app":"peakd/2023.11.3","format":"markdown","tags":["health","stemng","stemgeeks","neoxian","waivio","cent","proofofbrain","chessbrothers","alive","stemsocial"],"users":["Override","skyehi"],"image":["https://files.peakd.com/file/peakd-hive/skyehi/23tSKwpHhqwztCVx5eRaqEB2HuFHM7Q6JjKgrVArF8yYEB9e9kqAcVVob3e6fx8PXYTSm.jpg","https://files.peakd.com/file/peakd-hive/skyehi/23swrbKc3yjMYSUJMwmHkXUC71AufZXrkQ315XAST7nXzaKhpkvsAScnV3nBnpS55SJ2r.png","https://files.peakd.com/file/peakd-hive/skyehi/EoAYDi9ZKfkBZi7rMWbojnS8KytoTpbSepvPmfeZmL2V2h8FDZ3xRpC58MZDkf1LeRQ.png"]} | ||||||
created | 2023-12-03 18:53:21 | ||||||
last_update | 2023-12-03 18:53:21 | ||||||
depth | 0 | ||||||
children | 2 | ||||||
last_payout | 2023-12-10 18:53:21 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 2.094 HBD | ||||||
curator_payout_value | 2.145 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 8,173 | ||||||
author_reputation | 103,283,026,686,970 | ||||||
root_title | "How to build an Android Calendar App - Hive Programmers" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 129,380,961 | ||||||
net_rshares | 8,885,594,815,094 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
kevinwong | 0 | 3,813,347,787 | 0.6% | ||
eric-boucher | 0 | 3,115,159,639 | 0.6% | ||
thecryptodrive | 0 | 14,096,677,966 | 0.24% | ||
roelandp | 0 | 63,955,824,984 | 7.5% | ||
cloh76 | 0 | 824,705,638 | 0.6% | ||
lichtblick | 0 | 539,285,512 | 0.36% | ||
lordvader | 0 | 7,615,133,594 | 1.2% | ||
rmach | 0 | 2,537,581,436 | 7.5% | ||
lemouth | 0 | 429,560,349,990 | 15% | ||
lamouthe | 0 | 1,155,002,495 | 15% | ||
tfeldman | 0 | 1,122,239,588 | 0.6% | ||
metabs | 0 | 1,649,358,849 | 15% | ||
mcsvi | 0 | 138,803,721,978 | 50% | ||
lk666 | 0 | 67,880,070,106 | 100% | ||
cnfund | 0 | 2,450,584,492 | 1.2% | ||
justyy | 0 | 6,302,138,500 | 1.2% | ||
michelle.gent | 0 | 685,702,597 | 0.24% | ||
curie | 0 | 78,020,309,556 | 1.2% | ||
modernzorker | 0 | 784,820,636 | 0.84% | ||
techslut | 0 | 40,220,673,651 | 6% | ||
slider2990 | 0 | 6,260,742,321 | 100% | ||
steemstem | 0 | 276,472,091,334 | 15% | ||
edb | 0 | 1,006,722,809 | 1.5% | ||
walterjay | 0 | 95,690,092,034 | 7.5% | ||
valth | 0 | 2,211,031,451 | 7.5% | ||
metroair | 0 | 5,164,682,166 | 1.2% | ||
sardrt | 0 | 1,237,057,024 | 10% | ||
dna-replication | 0 | 548,729,435 | 15% | ||
dhimmel | 0 | 78,572,533,599 | 3.75% | ||
oluwatobiloba | 0 | 3,299,654,006 | 100% | ||
federacion45 | 0 | 1,778,300,365 | 0.6% | ||
gamersclassified | 0 | 1,074,353,682 | 0.6% | ||
iansart | 0 | 1,081,889,849 | 0.6% | ||
mobbs | 0 | 22,118,456,957 | 7.5% | ||
jerrybanfield | 0 | 3,843,117,583 | 1.2% | ||
rt395 | 0 | 2,018,458,785 | 1.5% | ||
bitrocker2020 | 0 | 1,842,665,037 | 0.18% | ||
jga | 0 | 57,461,888,097 | 100% | ||
sustainablyyours | 0 | 5,103,927,906 | 7.5% | ||
arunava | 0 | 4,030,585,190 | 0.48% | ||
samminator | 0 | 10,220,554,201 | 7.5% | ||
enjar | 0 | 9,498,750,172 | 1.08% | ||
mahdiyari | 0 | 281,540,723,135 | 80% | ||
lorenzor | 0 | 1,356,782,769 | 50% | ||
sam99 | 0 | 14,137,755,127 | 21% | ||
alexander.alexis | 0 | 9,177,815,665 | 15% | ||
professorbromide | 0 | 114,203,050,621 | 100% | ||
jayna | 0 | 1,637,560,712 | 0.24% | ||
princessmewmew | 0 | 1,646,450,844 | 0.6% | ||
joeyarnoldvn | 0 | 474,495,724 | 1.47% | ||
ufv | 0 | 3,006,808,420 | 50% | ||
gunthertopp | 0 | 16,051,651,657 | 0.3% | ||
empath | 0 | 873,438,275 | 0.6% | ||
minnowbooster | 0 | 1,049,979,628,179 | 20% | ||
felt.buzz | 0 | 2,166,887,285 | 0.3% | ||
howo | 0 | 479,678,267,738 | 15% | ||
tsoldovieri | 0 | 1,548,983,240 | 7.5% | ||
steemwizards | 0 | 921,115,201 | 1.2% | ||
neumannsalva | 0 | 1,008,576,081 | 0.6% | ||
stayoutoftherz | 0 | 34,460,429,158 | 0.3% | ||
abigail-dantes | 0 | 5,521,436,808 | 15% | ||
coindevil | 0 | 589,794,909 | 0.96% | ||
zonguin | 0 | 767,497,269 | 3.75% | ||
khalil319 | 0 | 2,071,437,322 | 10% | ||
val.halla | 0 | 2,869,753,262 | 10% | ||
iamphysical | 0 | 847,628,588 | 90% | ||
zyx066 | 0 | 864,253,440 | 0.36% | ||
revo | 0 | 2,442,971,439 | 1.2% | ||
azulear | 0 | 1,311,865,901 | 100% | ||
psicoluigi | 0 | 839,304,436 | 50% | ||
rocky1 | 0 | 166,377,523,536 | 0.18% | ||
thelordsharvest | 0 | 1,007,581,330 | 1.2% | ||
sumant | 0 | 582,730,739 | 0.6% | ||
aidefr | 0 | 1,539,094,646 | 7.5% | ||
sorin.cristescu | 0 | 3,033,820,310 | 0.6% | ||
inthenow | 0 | 20,428,362,605 | 20% | ||
splash-of-angs63 | 0 | 7,749,517,018 | 60% | ||
dauerossi | 0 | 6,246,657,148 | 30% | ||
meno | 0 | 5,543,251,088 | 0.6% | ||
buttcoins | 0 | 1,848,031,174 | 0.24% | ||
doifeellucky | 0 | 1,063,802,304 | 0.6% | ||
enzor | 0 | 901,173,613 | 15% | ||
bartosz546 | 0 | 1,294,100,841 | 0.6% | ||
dandays | 0 | 3,429,830,149 | 0.22% | ||
notb4mycoffee | 0 | 699,860,221 | 1.2% | ||
sunsea | 0 | 532,734,700 | 0.6% | ||
postpromoter | 0 | 350,193,429,305 | 15% | ||
omstavan | 0 | 7,376,160,636 | 100% | ||
bluefinstudios | 0 | 775,696,963 | 0.36% | ||
steveconnor | 0 | 1,032,997,501 | 0.6% | ||
dbddv01 | 0 | 511,670,310 | 3.75% | ||
aboutcoolscience | 0 | 3,755,959,375 | 15% | ||
sandracarrascal | 0 | 478,164,632 | 50% | ||
kenadis | 0 | 4,081,861,397 | 15% | ||
madridbg | 0 | 7,245,110,746 | 15% | ||
robotics101 | 0 | 4,476,318,381 | 15% | ||
lpv | 0 | 609,336,220 | 1.87% | ||
punchline | 0 | 1,612,798,775 | 1.2% | ||
r00sj3 | 0 | 25,722,939,983 | 7.5% | ||
sco | 0 | 4,378,350,433 | 15% | ||
ennyta | 0 | 951,546,976 | 50% | ||
vjap55 | 0 | 8,124,612,215 | 100% | ||
carn | 0 | 729,143,440 | 1.08% | ||
eliaschess333 | 0 | 52,342,762,955 | 100% | ||
hetty-rowan | 0 | 570,675,480 | 0.6% | ||
ydavgonzalez | 0 | 1,918,462,815 | 10% | ||
intrepidphotos | 0 | 3,648,233,873 | 11.25% | ||
fineartnow | 0 | 813,531,194 | 0.6% | ||
hijosdelhombre | 0 | 44,964,322,692 | 40% | ||
fragmentarion | 0 | 8,614,155,309 | 15% | ||
utube | 0 | 945,057,824 | 1.2% | ||
neneandy | 0 | 1,346,339,234 | 1.2% | ||
marc-allaria | 0 | 894,469,510 | 0.6% | ||
goldrooster | 0 | 2,313,797,625 | 100% | ||
gribouille | 0 | 670,722,215 | 15% | ||
pandasquad | 0 | 3,069,105,775 | 1.2% | ||
miguelangel2801 | 0 | 796,864,349 | 50% | ||
mproxima | 0 | 503,367,144 | 0.6% | ||
emiliomoron | 0 | 2,215,461,554 | 7.5% | ||
yjcps | 0 | 5,813,341,324 | 100% | ||
dexterdev | 0 | 579,532,582 | 7.5% | ||
photohunt | 0 | 826,349,944 | 1.2% | ||
geopolis | 0 | 964,427,925 | 15% | ||
ajfernandez | 0 | 774,710,104 | 100% | ||
robertbira | 0 | 1,585,740,794 | 3.75% | ||
alexdory | 0 | 1,813,158,860 | 15% | ||
takowi | 0 | 23,632,874,283 | 1.2% | ||
irgendwo | 0 | 4,788,024,765 | 1.2% | ||
samostically | 0 | 756,963,390 | 50% | ||
flugschwein | 0 | 1,902,899,173 | 12.75% | ||
charitybot | 0 | 5,138,589,365 | 100% | ||
cyprianj | 0 | 108,870,986,064 | 100% | ||
francostem | 0 | 2,050,909,145 | 15% | ||
endopediatria | 0 | 695,806,150 | 20% | ||
croctopus | 0 | 1,484,259,054 | 100% | ||
zipporah | 0 | 550,877,764 | 0.24% | ||
bscrypto | 0 | 3,221,743,920 | 0.6% | ||
movingman | 0 | 517,893,650 | 20% | ||
delpilar | 0 | 934,959,443 | 25% | ||
tomastonyperez | 0 | 17,118,554,130 | 50% | ||
bil.prag | 0 | 504,271,751 | 0.06% | ||
elvigia | 0 | 11,215,576,001 | 50% | ||
sanderjansenart | 0 | 1,077,645,990 | 0.6% | ||
kkndworld | 0 | 474,505,605 | 100% | ||
qberry | 0 | 792,446,805 | 0.6% | ||
strosalia | 0 | 10,660,899,695 | 80% | ||
braaiboy | 0 | 2,213,788,457 | 0.6% | ||
therising | 0 | 20,473,763,294 | 1.2% | ||
gifty-e | 0 | 578,804,828 | 80% | ||
eniolw | 0 | 15,732,667,253 | 100% | ||
de-stem | 0 | 8,245,951,615 | 14.85% | ||
serylt | 0 | 654,266,265 | 14.7% | ||
misterlangdon | 0 | 1,388,273,399 | 50% | ||
josedelacruz | 0 | 4,884,830,197 | 50% | ||
kgakakillerg | 0 | 18,364,177,495 | 10% | ||
charitymemes | 0 | 534,493,884 | 100% | ||
realblockchain | 0 | 16,021,279,378 | 50% | ||
erickyoussif | 0 | 634,084,920 | 100% | ||
primersion | 0 | 368,858,758,379 | 20% | ||
deholt | 0 | 838,436,460 | 12.75% | ||
anneporter | 0 | 548,129,272 | 4.5% | ||
minerthreat | 0 | 712,915,616 | 0.6% | ||
temitayo-pelumi | 0 | 1,343,246,988 | 15% | ||
andrick | 0 | 866,365,209 | 50% | ||
doctor-cog-diss | 0 | 13,446,302,288 | 15% | ||
dailyspam | 0 | 12,754,879,058 | 20% | ||
marcuz | 0 | 484,406,597 | 7.5% | ||
uche-nna | 0 | 1,161,648,973 | 0.96% | ||
vietthuy | 0 | 809,046,875 | 50% | ||
barbz | 0 | 102,063,309,391 | 100% | ||
cheese4ead | 0 | 998,907,396 | 0.6% | ||
mafufuma | 0 | 7,443,468,329 | 1% | ||
apshamilton | 0 | 2,680,508,152 | 0.15% | ||
nattybongo | 0 | 29,132,285,279 | 15% | ||
bflanagin | 0 | 926,168,604 | 0.6% | ||
ubaldonet | 0 | 2,575,560,779 | 80% | ||
armandosodano | 0 | 716,248,626 | 0.6% | ||
hamismsf | 0 | 830,977,667 | 0.15% | ||
gerdtrudroepke | 0 | 9,216,773,005 | 10.5% | ||
bambinaacida | 0 | 2,417,331,472 | 50% | ||
reinaseq | 0 | 7,394,499,859 | 100% | ||
kylealex | 0 | 4,666,527,829 | 10% | ||
cubapl | 0 | 912,380,136 | 7.5% | ||
orlandogonzalez | 0 | 3,179,891,382 | 25% | ||
fran.frey | 0 | 4,214,477,344 | 50% | ||
jrevilla | 0 | 672,633,609 | 100% | ||
thelittlebank | 0 | 4,345,873,506 | 0.6% | ||
pboulet | 0 | 30,522,223,865 | 12% | ||
stem-espanol | 0 | 13,711,828,767 | 100% | ||
futurekr | 0 | 1,537,605,426 | 100% | ||
cliffagreen | 0 | 4,838,390,653 | 10% | ||
aleestra | 0 | 13,017,022,847 | 80% | ||
palasatenea | 0 | 687,920,203 | 0.6% | ||
the.success.club | 0 | 484,593,617 | 0.6% | ||
amansharma555 | 0 | 595,961,049 | 100% | ||
sincensura | 0 | 1,033,702,993 | 100% | ||
brianoflondon | 0 | 15,835,514,718 | 0.3% | ||
giulyfarci52 | 0 | 1,722,948,742 | 50% | ||
kristall97 | 0 | 3,545,162,422 | 100% | ||
steemcryptosicko | 0 | 1,940,544,625 | 0.24% | ||
cakemonster | 0 | 685,278,707 | 1.2% | ||
stem.witness | 0 | 865,184,604 | 15% | ||
jpbliberty | 0 | 1,340,089,692 | 0.3% | ||
priyandaily | 0 | 5,350,011,322 | 40% | ||
steemstorage | 0 | 1,469,743,090 | 1.2% | ||
crowdwitness | 0 | 39,818,047,456 | 7.5% | ||
hairgistix | 0 | 662,638,637 | 0.6% | ||
steemean | 0 | 10,068,904,835 | 5% | ||
quentinvb | 0 | 474,802,575 | 100% | ||
deveney | 0 | 475,392,084 | 100% | ||
hashkings | 0 | 40,770,996,998 | 25% | ||
newton666 | 0 | 4,379,228,345 | 100% | ||
kggymlife | 0 | 3,651,363,683 | 20% | ||
medro-martin | 0 | 13,148,614,328 | 95% | ||
aaronkroeblinger | 0 | 115,878,108,344 | 50% | ||
larsito | 0 | 5,267,742,664 | 60% | ||
robibasa | 0 | 17,503,447,501 | 10% | ||
zeruxanime | 0 | 2,254,718,119 | 50% | ||
kgswallet | 0 | 512,145,591 | 10% | ||
reggaesteem | 0 | 479,464,264 | 5% | ||
bedazzled | 0 | 121,102,352,051 | 100% | ||
stemgeeks | 0 | 1,048,864,301 | 50% | ||
babytarazkp | 0 | 1,169,639,423 | 40% | ||
abh12345.stem | 0 | 1,232,629,212 | 100% | ||
nazer | 0 | 549,863,517 | 7.5% | ||
stem.alfa | 0 | 3,530,223,309 | 100% | ||
steemstem-trig | 0 | 274,477,200 | 15% | ||
baltai | 0 | 1,248,683,119 | 0.6% | ||
dmoonfire | 0 | 31,846,329,668 | 71% | ||
yggdrasil.laguna | 0 | 0 | 25% | ||
ibt-survival | 0 | 35,806,353,892 | 10% | ||
sarahandsam | 0 | 15,869,121,257 | 100% | ||
xerxes.alpha | 0 | 3,269,603,798 | 100% | ||
zerotwo | 0 | 57,271,799,153 | 100% | ||
zirky | 0 | 546,150,033 | 1.02% | ||
chapmain | 0 | 0 | 100% | ||
lightpaintershub | 0 | 664,593,645 | 1% | ||
bilpcoinbpc | 0 | 814,450,731 | 5% | ||
yunnie | 0 | 754,009,577 | 100% | ||
monica-ene | 0 | 520,884,689 | 0.6% | ||
fsm-core | 0 | 12,228,114,580 | 50% | ||
stemsocial | 0 | 124,926,729,828 | 15% | ||
kyleana | 0 | 478,680,175 | 50% | ||
veeart | 0 | 2,106,890,760 | 50% | ||
holoferncro | 0 | 4,583,369,714 | 10% | ||
emrysjobber | 0 | 1,180,271,397 | 25% | ||
noelyss | 0 | 4,902,887,850 | 7.5% | ||
greengalletti | 0 | 25,712,907,249 | 50% | ||
quinnertronics | 0 | 14,653,384,900 | 7% | ||
gohive | 0 | 4,419,647,768 | 100% | ||
aabcent | 0 | 712,004,911 | 0.96% | ||
altleft | 0 | 4,497,460,225 | 0.01% | ||
dorkpower | 0 | 3,533,238,816 | 100% | ||
doudoer | 0 | 631,531,924 | 50% | ||
apendix1994 | 0 | 3,868,979,659 | 90% | ||
dhedge | 0 | 1,885,678,110,902 | 21.85% | ||
meritocracy | 0 | 13,497,223,239 | 0.12% | ||
pepeymeli | 0 | 580,214,320 | 50% | ||
eumorrell | 0 | 2,522,459,046 | 100% | ||
meestemboom | 0 | 1,765,395,325 | 100% | ||
dcrops | 0 | 7,539,006,475 | 0.6% | ||
infernalcoliseum | 0 | 3,444,524,570 | 25% | ||
rondonshneezy | 0 | 2,510,582,823 | 12.5% | ||
dronegirl | 0 | 447,083,999 | 100% | ||
adamada.stem | 0 | 4,676,942,169 | 100% | ||
mayorkeys | 0 | 509,898,818 | 30% | ||
failingforwards | 0 | 622,958,052 | 0.6% | ||
drricksanchez | 0 | 3,099,612,356 | 0.6% | ||
juecoree.stem | 0 | 579,975,919 | 100% | ||
nfttunz | 0 | 1,728,769,022 | 0.12% | ||
okluvmee | 0 | 543,797,544 | 0.6% | ||
holovision.cash | 0 | 3,172,425,033 | 100% | ||
onealfa.pob | 0 | 0 | 2% | ||
krrizjos18 | 0 | 628,763,327 | 7.5% | ||
holovision.stem | 0 | 371,265,375 | 100% | ||
sarashew | 0 | 826,371,117 | 1.2% | ||
hukepuk | 0 | 4,376,566,170 | 100% | ||
buffalobison | 0 | 27,177,503,763 | 50% | ||
podping | 0 | 1,557,574,653 | 0.3% | ||
peckypeace | 0 | 2,860,699,157 | 100% | ||
solominer.stem | 0 | 764,593,687 | 100% | ||
ayee11 | 0 | 1,109,399,994 | 100% | ||
lycanskiss | 0 | 2,113,261,634 | 100% | ||
mayberlys | 0 | 2,123,182,947 | 50% | ||
chessbrotherspro | 0 | 369,386,295,419 | 100% | ||
aries90 | 0 | 9,392,112,647 | 1.2% | ||
onewolfe | 0 | 476,047,504 | 25% | ||
blingit | 0 | 722,477,205 | 0.6% | ||
dvpm | 0 | 3,305,230,935 | 100% | ||
marsupia | 0 | 990,436,735 | 25% | ||
yorguis | 0 | 2,426,835,146 | 90% | ||
rosmarly | 0 | 1,718,805,564 | 100% | ||
yixn | 0 | 8,047,588,629 | 0.6% | ||
motorseb | 0 | 12,785,312,247 | 100% | ||
mcookies | 0 | 8,871,424,266 | 50% | ||
waivio.curator | 0 | 1,827,299,793 | 3.41% | ||
raph1 | 0 | 3,748,162,959 | 100% | ||
pompeylad | 0 | 2,096,239,891 | 100% | ||
ledgar | 0 | 5,985,039,707 | 100% | ||
zerothree | 0 | 51,987,766,973 | 100% | ||
zerofour | 0 | 35,227,462,712 | 100% | ||
onealfa.vyb | 0 | 0 | 2% | ||
oabreuf24 | 0 | 8,653,785,842 | 100% | ||
putraspjaman | 0 | 23,117,853,771 | 100% | ||
vindiesel1980 | 0 | 608,110,019 | 0.6% | ||
zerozerozero | 0 | 67,346,643,000 | 100% | ||
zerozeroone | 0 | 19,075,119,179 | 100% | ||
benwickenton | 0 | 536,566,040 | 1.2% | ||
youarecreative | 0 | 544,751,355 | 50% | ||
ydaiznfts | 0 | 10,696,738,985 | 50% | ||
fernandoylet | 0 | 48,715,204,581 | 50% | ||
prosocialise | 0 | 12,620,629,921 | 7.5% | ||
archangel21 | 0 | 695,137,592 | 1.2% | ||
street.curator | 0 | 950,879,657 | 50% | ||
titly | 0 | 478,755,156 | 50% | ||
mugueto2022 | 0 | 552,421,530 | 20% | ||
nazom | 0 | 1,230,008,555 | 50% | ||
raca75 | 0 | 690,846,156 | 50% | ||
soyjoselopez | 0 | 475,164,331 | 20% | ||
sbtofficial | 0 | 976,407,763 | 0.6% | ||
hk-curation | 0 | 108,449,186,594 | 50% | ||
inibless | 0 | 519,303,269 | 7.5% | ||
ctptips | 0 | 45,908,861 | 15% | ||
gejami | 0 | 7,107,574,353 | 100% | ||
gmzorn | 0 | 2,734,721,025 | 100% | ||
girlcrypto | 0 | 993,092,279 | 100% | ||
leogomez1414 | 0 | 2,092,543,966 | 25% | ||
clpacksperiment | 0 | 626,443,432 | 0.6% | ||
theoneblog | 0 | 2,339,229,736 | 50% | ||
humbe | 0 | 1,427,251,684 | 1% | ||
kingscurate | 0 | 474,754,205 | 100% | ||
aaronm04 | 0 | 827,293,066 | 50% | ||
opticus | 0 | 1,094,584,642 | 0.6% | ||
rhemagames | 0 | 988,765,070 | 0.6% | ||
skyehi | 0 | 4,561,315,730 | 100% | ||
snippets | 0 | 74,726,531,683 | 100% |
<h3>Congratulations!</h3><hr /><div class="pull-right"><img src="https://images.hive.blog/DQmQLssYuuJP2neoTVUbMRzvAu4Ptg7Vwt92aTM7Z3gNovg/cb-logo-150.png" alt="You have obtained a vote from CHESS BROTHERS PROJECT"/></div><div class="text-justify"><h3>✅ Good job. Your post has been appreciated and has received support from <a href="/@chessbrotherspro"><b>CHESS BROTHERS</b></a> ♔ 💪</h3><p><br>♟ We invite you to use our hashtag <b>#chessbrothers</b> and learn more <a href="/@chessbrotherspro/introducing-chess-brothers-project-the-most-innovative-community-combining-chess-fitness-and-more"><b>about us</b></a>.</p><p>♟♟ You can also reach us on our <a href="https://discord.gg/73sK9ZTGqJ" rel="noopener" title="This is going to take you to the Discord of Chess Brothers"><b>Discord server</b></a> and promote your posts there.</p><p>♟♟♟ Consider <a href="/@chessbrotherspro/teamwork-is-worthwhile-join-the-chess-brothers-healing-trail-supporting-the-work-being-done-and-earning-rewards"><b>joining our curation trail</b></a> so we work as a team and you get rewards automatically.</p><p>♞♟ Check out our <a href="/@chessbrotherspro"><b>@chessbrotherspro</b></a> account to learn about the curation process carried out daily by our team.</p><p><br>🏅 If you want to earn profits with your HP delegation and support our project, we invite you to join the <i>Master Investor</i> plan. <a href='/@chessbrotherspro/master-investor-plan-or-programa'>Here you can learn how to do it.</a></p></div><div class="text-center"><p><br>Kindly</p><p><strong><em>The CHESS BROTHERS team</em></strong></p></div>
author | chessbrotherspro |
---|---|
permlink | re-how-to-build-an-android-calendar-app-hive-programmers |
category | hive-196387 |
json_metadata | "" |
created | 2023-12-04 09:13:24 |
last_update | 2023-12-04 09:13:24 |
depth | 1 |
children | 0 |
last_payout | 2023-12-11 09:13:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 1,598 |
author_reputation | 77,998,853,470,155 |
root_title | "How to build an Android Calendar App - Hive Programmers" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 129,397,925 |
net_rshares | 0 |
<div class='text-justify'> <div class='pull-left'> <img src='https://stem.openhive.network/images/stemsocialsupport7.png'> </div> Thanks for your contribution to the <a href='/trending/hive-196387'>STEMsocial community</a>. Feel free to join us on <a href='https://discord.gg/9c7pKVD'>discord</a> to get to know the rest of us! Please consider delegating to the @stemsocial account (85% of the curation rewards are returned). Thanks for including @stemsocial as a beneficiary, which gives you stronger support. <br /> <br /> </div>
author | stemsocial |
---|---|
permlink | re-skyehi-how-to-build-an-android-calendar-app-hive-programmers-20231203t205232772z |
category | hive-196387 |
json_metadata | {"app":"STEMsocial"} |
created | 2023-12-03 20:52:33 |
last_update | 2023-12-03 20:52:33 |
depth | 1 |
children | 0 |
last_payout | 2023-12-10 20:52:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 545 |
author_reputation | 22,918,491,691,707 |
root_title | "How to build an Android Calendar App - Hive Programmers" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 129,383,112 |
net_rshares | 0 |