• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

New App: Smart Device Info - Hardware & Software analysis (Version 1.2.0)

WHAT'S NEW
Smart Device Info

EXTRA INFO
  • Rating: 4.7
  • Installs: 10+
  • Download Size: 4.0M
  • Version: 1.2.0
DESCRIPTION
Smart Device Info provides you basic and advance hardware information of your phone, with the attractive and beautiful user interface.

Device info application is the most comprehensive, powerful and fancy app that provide you with all the information you need to know about your phone, system and hardware with the most attractive and beautiful user interface.

Here is the detailed feature list:

★ Complete native Device Info App
★ Home /Dashboard.
★ Operating System(OS) Info.
★ Sensor List & Details
★Device Info: [Device Name ,Model ,Manufacturer ,Device etc
★ Operating System(OS) Info: Version, Verson Name, API Level Build ID, Build Time, Fingerprint etc
★ All Mobile Sensor info
★ Processor info: Processor, Bogo MIPS, Features, CPU Implementer, CPU Architecture, CPU variant etc.
★ Device Info: Device Name, Model, Manufacturer, Device etc.
★ Battery Info: Battery Type, Power Source, Battery Temperature, Battery Voltage, Battery Scale,Battery Health,AC Power etc.
★ Network Info: Data Type, Network Type, IP Address,MAC Address, IP Address, SSID, Link Speed, WiFi, Unavailable, Connected etc
★ Camera Info:
★ Storage Info:

Permissions:
- CAMERA is required for getting camera software characteristics. Before android 5.0 only.
- ACCESS_WIFI_STATE is required for info about wi-fi connection.
- WRITE_EXTERNAL_STORAGE is required to create PDF and XLS file.

How is this interface implemented?

Hi all. I wrote a simple weather app which goes fetches data from Openweathermap's API in Json format. I used an Aynctask to fetch the data, using ideas from online (as we all do!)
All works ok, but I am trying to get a better understanding of the callback implementation (similar to the one at http://smartandroidians.blogspot.com/2015/03/how-to-use-callback-or-interface-pass.html)
In particular, I am trying to understand how is the interface is implemented without the keyword 'implements' anywhere?
The Async thread:

Java:
class MyTask extends AsyncTask {
public interface OnUpdateListener {
public void onUpdate(MyObject obj);
}
OnUpdateListener listener;
MyTask() {
}
public void setUpdateListener(OnUpdateListener listener) {
this.listener = listener;
}
MyObject doInBackground() {
return obj;
}
onPostExecute(MyObject obj) {
if (listener != null) {
listener.onUpdate(obj);
}
}
And in the main thread:
Java:
yActivity extends Activity {
void onCreate (Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
MyTask  task = new MyTask();
task. setUpdateListener(new MyTask. OnUpdateListener() {
public void onUpdate(MyObject obj) {
.....
}
});
task.execute();
}
}

Then in the code that I did:
Java:
public class fetchData extends AsyncTask<Void, String, String> {
    //------------added--------------
    public interface AsyncResponse {
        void processFinish(String output);
    }
    public AsyncResponse  delegate = null;//Call back interface

    public fetchData(AsyncResponse asyncResponse) {
        delegate = asyncResponse;//Assigning call back interface through constructor
    }
//---------------------------------------
    String data = "";
    String dataParsed = "";
    String singleParsed = "";
    String iconValue = "";



    protected String doInBackground(Void...voids) {

        try {

Thanks all
Russell

New Game: Princess Cute Kitty (Version 1.0.9)

EXTRA INFO
  • Rating: 4.6
  • Installs: 10+
  • Download Size: 76M
  • Version: 1.0.9
DESCRIPTION
Enjoy time with your pet cat ! Take care of your cats, feed it, and play with it. your cats will play with you .To better care for cats, you need to do the following......

Description
Build your own Kingdom, There are many things to explore, and there are countless stories to be told and to take risks. Open the game, gorgeous and warm castle opened the door to you, cute cats are lined up in a neat queue, waiting for your care and companionship 。you can dress up the princess,building a castle.

The main features:
● 7 fun mini-games
● Guess the cat in the treasure chest
● Clean the cat's room
● Make cakes for cats
● Dress up princess
● Shoot balloons with cats
● Get gold coins to create your own kingdom by playing various mini-games
● Cat swimming competition

sound and mic doesn't work

Hi everyone, i need a little help, so back in 2016 i got a samsung galaxy note 3 and it was already rooted when i got it bc i bought it from a friend, everything is was okay, until one day i started messing up with it, so i went online looking on how to boost my sound with headphones and so like i tried to follow a tutorial walking me thru on how to go to some folder within the phone system i don't know what it really was tbh because i clearly don't know anything about it i remember it being within the root folder an archives and like i remember it was this paragraph of numbers and letters and commands and it was extremely long and i had to scroll down all the way down and i had to like delete a certain word or like command and type something else so i did and like i kept following the tutorial and it said i had to restart my phone so i did and ever since then i stopped working, shortly after that i had to get a new phone but i recently went to my parents house getting some stuff and i found it sitting there getting dust and like its fully funcional and i find no answers online about it, also this was like 4 years ago and i don't really remember what i did, can someone help me figure this out? also im trying to update the software because its at 5.0.2 lollipop

Filter

Back
Top Bottom