Showing posts with label Android. Show all posts
Showing posts with label Android. Show all posts

Monday, June 11, 2018

How I am using my symphony roar e80 as emulator

I have an android phone called symphony android mobile. I have tried many ways to use this phone as emulator. But failed.
Finally I have solved my problem.
Here is the step I used:

  1. First I connect my android phone as usb on my computer and turn on usb debugging.
  2. Then I go to computer>manage>device manager>other devices
  3. There I saw my android phone is looking un-usable. 
  4. So, I download the driver from internet.
    Download Link: https://gsmusbdriver.com/symphony-e80
  5. Now I unzip this file on my desktop. 
  6. Then again I go to computer>manage>device manager>other devices
    Click one by one and doing the same work for all the un-usable version of my device.
    work: first right click on android adb interface>update driver software>browse my computer for software>Let me pick from a list from my device>android device>have disk>browse>android win_usb.inf>>install
  7. I have done the same work for all the version of my devices and now my works as emulator.

Wednesday, November 22, 2017

Checking internet connection and showing result in Snackbar in android studio

Using Snackbar you need to add android support design dependencies. Copy below dependencies and add to your build.gradle file.


compile 'com.android.support:design:25.3.1'

Give an id to your layout. as I am using RelativeLayout so I give it an id like 'mylayout'

android:id="@+id/mylayout"

In MainActivity.java file inside onCreate() method added your layout id like

Monday, August 28, 2017

Android Swipe Refresh


This article is about android swipe refresh with simple code.
To add Swipe Refresh we need to add android SwipeRefreshLayout widget under activity_main.xml file


Inside SwipeRefreshLayout we need to put our refresh widget such as ListView,TextView


Saturday, August 26, 2017

Interstitial Ads for Android



Today We are going to learn how to set interstitial Ads for android.
Our Steps of work describe below.


Creating An Android Project

Open your android studio and under File>New>New Project and name your Interstitial Demo. Press next and keep as it is and press next select Empty Activity. Then press next and then finish.

Wednesday, August 16, 2017

How I added AdMob in my android applications(Banner Ads)


Image Download From google image search


1. First of all I modify build.gradle file. There under dependencies I added a code of line.
 2. Then I added another code of line under res/values/string




Monday, June 12, 2017

How I am using my Symphony mobile as android emulator

I am using my symphony android mobile(model roar e80) as emulator. But first I couldn't figure out how to use that. But now I can. I have followed some simple steps to use it as an emulator.

Step 1: I connected my symphony phone as USB with my desktop PC and in USB option selected USB Virtual Device. (Most probably it has nothing to select USB Virtual Device, Hence it work in Media device file transfer)
Step 2: In settings option under about phone, I tapped it several time to activate developer option. and turn on it and turn on USB debugger.
Step 3: In eclipse, as run configurations under target selected "always prompt to pick device" and run my application.
NB: For android studio it's automatically detect the device if USB debugger is on.

And finally I can run my application on my symphony device.

Tuesday, January 3, 2017

অ্যান্ড্রয়েড এর জন্য একটি সিম্পল ব্রাউজার তৈরি করা


অ্যান্ড্রয়েড এর ওয়েব ভিউ ফিচারের একটি সহজ টিউটরিয়াল হলো কিভাবে একটি সিম্পল ওয়েব ব্রাউজার তৈরি করবেন।
সেটি করার জন্য প্রথমেই আপনাকে একটি নতুন প্রজেক্ট নিতে হবে।
ধরি , আমাদের সেই প্রজেক্টটির নাম Simple Browser

Recent Post