Posts

Showing posts from 2020

Aide ide tutorial - Add line graph

Image
Aide ide tutorial on how to add line graph in your project. A line graph or line plot or line graph or curve chart is a type of chart which displays information as a series of data points called 'markers' connected by straight line segments. It is a basic type of chart common in many fields. Line graph coding: first go to build.gradle and add this library. compile 'com.github.lecho:hellocharts-library:1.5.8@aar' Next goto your MainActivity.java and add this following codes: import java.util.ArrayList; import java.util.List; import lecho.lib.hellocharts.model.Axis; import lecho.lib.hellocharts.model.AxisValue; import lecho.lib.hellocharts.model.Line; import lecho.lib.hellocharts.model.LineChartData; import lecho.lib.hellocharts.model.PointValue; import lecho.lib.hellocharts.model.Viewport; import lecho.lib.hellocharts.view.LineChartView; LineChartView lineChartView; String[] axisData = {"Jan", "Feb", "Mar", &

Publish aide ide project to Google playstore

Image
Tutorial on how to publish your android apps or games to google playstore  in your aide ide project. Note Google developer account is not free and you need to purchase the registration fee,  for just $25 one time payment. Before  publishing android project you need to sign your apk project. How to sign apk? 1 Open aid ide application. 2 Open your android project. 3  Click the "Menu" icon located at the top right . 4 Goto more > project > publish project > Create publisher key, and sign your apk files. Publish aide ide project to playstore * Next goto Google Developer console create account or sign in account. * In your dashboard click the "Create Application" * Enter your application name. * Thin fillup the following information about your app project. - Short description. - Full description. Upload Graphic Asset - Your app icon size 512x512 px. - Your app screenshot. Phone, Tablet and Android TV,i think the maximum i

Implement a-ads on blogger or website

Image
Learn on how to implement a-ads adnetwork into your blogger or website. A-ADS is a pioneer crypto advertising network. It offers ethical privacy-aware CPA, CPD, CPM ads and accepts over 20 major crypto-currencies, including Bitcoin. A-ads tutorialsl step by step. 1) create a-ads.com account or sign in to a-ads. 2) click the button "Create an Ad Unit". 3) Select ad unit type. site, app or affiliate. i recmmend choose the 'site' unit type. 4) Select the ads banner size  from adapted to  970x250. 5) The page url, enter your website or blogger links. e.g https://yourlink.blogspot.com 6) Filter content, check which types of content are NOT allowed to be displayed. Done. FAQ Q: Is a-ads legit or fake? A:  a-ads is legit and paying. Q: What is the minimum  withdraw of a-ads? A: the minimum withdraw is 0.00000001 Q: Can i add this adnetwork on my aide-ide project? A: Yes, but you most use webview to display the ads. For more alternative adnetwork to e

Download from url with popup dialog and progressbar

Image
Tutorial on how to download files from the url with popup dialog and progressbar in your android app project using aide ide first add permission in your AndroidManifest.xml <uses-permission android:name="android.permission.INTERNET" /> <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> Next goto your  java class and add this permission, this permission is very important on higher version of android. if (checkSelfPermission(android.Manifest.permission.WRITE_EXTERNAL_STORAGE) == PackageManager.PERMISSION_GRANTED) { Log.e("Permission error","You have permission"); }else{ ActivityCompat.requestPermissions(this, new String[]{Manifest.permission.WRITE_EXTERNAL_STORAGE}, REQUEST_CODE); } Your download class class DownloadFile extends AsyncTask<String,Integer,Long> { ProgressDia

Download files from url in aide ide project

Image
Tutorial on how to download files from url in your aide ide project. first add permission in your AndroidManifest.xml <uses-permission android:name="android.permission.INTERNET" /> <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> Next goto your  java class and add this permission, this permission is very important on higher version of android. if (checkSelfPermission(android.Manifest.permission.WRITE_EXTERNAL_STORAGE) == PackageManager.PERMISSION_GRANTED) { Log.e("Permission error","You have permission"); }else{ ActivityCompat.requestPermissions(this, new String[]{Manifest.permission.WRITE_EXTERNAL_STORAGE}, REQUEST_CODE); } Last step is download code: DownloadManager.Request request = new DownloadManager.Request(Uri.parse("https://yourfiles.com/example.pdf"));    requ

Android play .gif file on imageview in aide ide

Image
In this tutorial we are playing .gif files on imageview in our android app project in aide ide,  the default imageview is not support playing .gif files, for fast and easy way im using glide library. Glide is an Image Loader Library for Android developed by bumptech and is a library that is recommended by Google. It has been used in many Google open source projects including Google I/O 2014 official application. It provides animated GIF support and handles image loading/caching. First goto your "build.gradle" and add this code below compile 'com.github.bumptech.glide:glide:3.6.1' Next goto your java files e.g MainActivity.java and use this following codes below: private ImageView = imff; imff=(ImageView)findViewById(R.id.viewthefile_image); String kakaka5 = "https://giffile_url_here.thatyourlink"; Glide.with(this) // replace with 'this' if it's in activity .load(kakaka5) .diskCacheStrategy(DiskCacheStrategy.ALL) .

Android webview enable fullscreen video in aidi ide

Image
Tutorial on how to enable/support the fullscreen view on the videos that play in your webviews aide ide project. The default webview fullscreen, is not supported. Now lets start, first add internet permission in "AndroidManifest.xml" <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> Next goto your layout e.g "main.xml" and paste this  full codes: <?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" tools:context=".MainActivity" android:background="#000000"> <RelativeLayout android:id="@+id/nonVideoLayout" android:layou

Implement in-app purchase in aide ide

Image
Toturial on how add android In-App billing in  your android app project. In this tutorial im using anjlab v.3  library, this library supports: In-App Product Purchases (both non-consumable and consumable) and Subscriptions. Note this tutorial require developer console in order to get license key from playstore. Lets start coding, first goto your "build.gradle" and add anjlab library: compile 'com.anjlab.android.iab.v3:library:1.0.44' compile 'com.android.billingclient:billing:1.0' Next goto you "AndroidManifest.xml" and add permission. <uses-permission android:name="android.permission.INTERNET" /> <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> <uses-permission android:name="com.android.vending.BILLING" /> In your java files e.g "MainActivity.java"  add this following codes: import com.anjlab.android.iab.v3.*; implements BillingProcessor.I

Malitanyo Developer blog & tutorial 2020
Refund Policy    Facebook Page    Google Play

Blogger.com