September 11, 2020
September 9, 2020
Adarsha Bangla Lipi – Android App by Zakaria
Download Link – https://play.google.com/store/apps/details?id=com.zakasoft.adarshabanglalipi This is first version of the Bangla Alphabet learning app where the voice was recorded by me. It was a great experience to make something useful and people really liked it a lot. Some of the improvements that are needed: Add a game
September 8, 2020
100 Android Apps by Zakaria Bin Abdur Rouf
I am Zakaria Bin Abdur Rouf and I always wanted to make a small difference in this world by using technology. Below are some of my published works and some wish list of 100 apps. If you have suggestions do let me know in the comments or send me an email to zakaria@fastbikri.com Adarsha Bangla
September 8, 2020
Goals in Life | Zakaria
2020 Build 100 useful android apps by 31st December, 2020 Conduct 12 online tutorial class every week by 31st December Get 10,000 new customers for fastbikri.com Learn Tafsir of Al Quran
September 8, 2020
Mikrotik Tutorials | How to configure Router as an access point
Main router is connected to the ISP. One cable is connected from the Main Router to another mikrotik router in ether port2 Create bridge between ether2 and wlan Configure the wlan and set ssid and password Create a static ip and set proper dns tips: if you reset the mikrotik, the default ip is 192.168.88.1
September 8, 2020
Android Tutorials | How to add banner ads with Facebook Audience Network
Manifest: <uses-permission android:name=”android.permission.INTERNET” /> <uses-permission android:name=”android.permission.ACCESS_WIFI_STATE” /> <uses-permission android:name=”android.permission.ACCESS_NETWORK_STATE” /> build.gradle – dependency implementation ‘com.facebook.android:audience-network-sdk:5.11.0’ Layout <LinearLayout android:id="@+id/banner_container" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_alignParentBottom="true" android:orientation="vertical" app:layout_constraintBottom_toBottomOf="parent" /> Source Code import com.facebook.ads.AudienceNetworkAds; import com.facebook.ads.*; private NativeBannerAd nativeBannerAd; oncreate() AudienceNetworkAds.initialize(this); adView = new AdView(this, "415395656050XXX_649219926001XXX", AdSize.BANNER_HEIGHT_50); // Find the Ad Container LinearLayout adContainer = (LinearLayout) findViewById(R.id.banner_container); // Add the ad
August 10, 2020
Robi Number Check
Dial *140*2*4# Reference: http://www.bdinfoblog.com/2012/10/check-own-number-in-banglalink-airtel.html
August 8, 2020
Online Training on Professional Android Application Development
Course At A Glance Date : 15 Aug – 15 Sep 2020 No. of Classes/ Sessions : 12 Total Hours : 24 Last Date of Registration : 14 Aug 2020 Class Schedule : Saturday – 8:30 PM – 10:30 PM Monday – 8:30 PM – 10:30 PM Wednesday – 8:30 PM – 10:30 PM Venue :
August 3, 2020
Fanvil | IP Phone
How to forward calls on Fanvil Phone? Press Menu ->Features->Enter>Call Forward->Enter. 2. Select the line to be forwarded
July 28, 2020
Android Development | Problems and Solutions
We all face some kind of problems when coding in Android Development. I am trying to compile some solutions which will help you to speed up the process. Buttons How to have a transparent ImageButton: Android? android:background=”@null” For Ripple effect: android:background=”?attr/selectableItemBackgroundBorderless” Shortcut Keys https://developer.android.com/studio/intro/keyboard-shortcuts EditText EditText1.requestFocus(); // this will focus the cursor on the edittext