Skip to content

Android

Discussions on Android development

This category can be followed from the open social web via the handle android@forum.codeproject.com

882 Topics 2.6k Posts
  • about android and jruby

    ruby android tools help
    2
    0 Votes
    2 Posts
    3 Views
    Kornfeld Eliyahu PeterK
    Try Google with ruby on Android... jRuby isn't the best tool for you... I'm not questioning your powers of observation; I'm merely remarking upon the paradox of asking a masked man who he is. (V)
  • Database converting tools

    sqlite help android database sql-server
    3
    0 Votes
    3 Posts
    2 Views
    M
    Thank you so much :)
  • text

    android mysql
    3
    0 Votes
    3 Posts
    2 Views
    M
    je te propose de changer le projet... ;P ;P ;P ;P si tu voudrais tu pourrais jetter un coup d'oeil sur le lien suivant https://github.com/andreipop/Android-Login-App interessant :) :)
  • Height and Distance Measuerment on Android

    android question
    2
    0 Votes
    2 Posts
    2 Views
    M
    i think you should use opencv library for this stuff to write the source code of your project. first step is to know the specs. of the camera (focus. zoom....) second step is to identify 2 dark points on a white background (using opencv library) third step is to make the calculus (you should remember some trigonometry class... ) PLZ, kindly, DON'T ASK ME MORE ABOUT THIS. That's all what i know about that.. :) :) :) :) :) :)
  • Send sms on restarting android device.

    android question
    2
    0 Votes
    2 Posts
    3 Views
    P
    You can do it by extending BroadcastReceiver. public class MyBootReceiver extends BroadcastReceiver { @Override public void onReceive(Context context, Intent intent) { // Your SMS logic } } Then you need to add android.permission.RECEIVE_BOOT_COMPLETED permission in Androidmanifest.xml as well as your BroadcastReceiver
  • Implement a web server based on REST Protocol in android

    android sysadmin json help
    6
    0 Votes
    6 Posts
    2 Views
    W
    Eu tenho que fazer um projeto para android na onde eu vou ter que criar uma el para executar no android essa tela vai ter uns campos na hora que eu preencher os campos e clicar em salvar vai ter que salvar num servidor que eu tambem tenho que criar em java só que eu não estou conseguindo fazer então eu precisava da tela do cliente no android e do servidor em java se voces poderem me ajudar agradeço a tela pode conter as seguintes informações nome, endereço, idade, telefone.
  • regarding andriod app development

    database sql-server sysadmin question
    4
    0 Votes
    4 Posts
    3 Views
    U
    My answer may help you to get this doubt clarified. We can not connect to SQL Server or My SQL database from Android app. We need to have a middleware client to get this done. This is called "Web Service". Basic flows of web service are (From mobile app perspective); 1. Generally Mobile application (In your case Android app) requests some data to web service. 2. Web service fetches data from backend (SQL Server & My SQL etc..) and passes to Mobile application. 3. Mobile Application processes the data. So, My suggestion to you to connect to database from Android app is, You learn the basics of web service. Every mobile platform has got APIs to call web service. Thank You, Irudaya Raj, Mobile Application Developer (Android, iOS & Windows Platforms), Bosco Soft Technologies PVT limited, Thiruppattur.
  • Access files from the memory card [ANDROID]

    android sysadmin xml performance help
    2
    0 Votes
    2 Posts
    2 Views
    P
    Have a look at [http://developer.android.com/guide/topics/data/data-storage.html[^]]
  • sdk installation problem

    linux help
    3
    0 Votes
    3 Posts
    2 Views
    M
    I would suggest you to uninstall and reinstall everything again and download everything from http://developer.android.com/index.html[^]
  • 0 Votes
    2 Posts
    3 Views
    O
    To move from one activity to another in Android, you need an Intent. The sample format of how to use an Intent is pasted below. Intent intent = new Intent(context,NameofActivitytoMoveTo.class); startActivity(intent); Suppose you have ActivityOne in your android project and you want to navigate to ActivityTwo, use the sample code below: Intent intent = new Intent(ActivityOne.this,ActivityTwo.class); startActivity(intent); The two lines of code above will be in the button onClickListener. Hope this helps. Happy coding.
  • detection de personne dans une image

    3
    0 Votes
    3 Posts
    4 Views
    R
    how to count the number of people in an image using opencv, please help me
  • programming for handheld devices with SQL Server ?

    csharp css android ios mobile
    1
    0 Votes
    1 Posts
    1 Views
    No one has replied
  • 0 Votes
    2 Posts
    3 Views
    Y
    Hi friend, Previoulsy i have also got same probelm,I have solve that probelm using sqlite database.store the records from firs activity to sqlite database table and again store records form second activity to same table in sqlite database and finally fetch data from database and store in any server database ie.mysql or anywhere else..
  • Class requires API level 11 (current min is 8)

    android com json help announcement
    3
    0 Votes
    3 Posts
    3 Views
    R
    Go to Android manifest file and Change API level
  • 0 Votes
    1 Posts
    1 Views
    No one has replied
  • 0 Votes
    1 Posts
    1 Views
    No one has replied
  • Android

    android question
    2
    0 Votes
    2 Posts
    3 Views
    U
    screen orientation is changed when activity is being loaded.
  • Android Push Notification

    android question
    2
    0 Votes
    2 Posts
    4 Views
    U
    setContentView(R.layout.notification_alert); /*********** Create notification ***********/ final NotificationManager mgr= (NotificationManager)this.getSystemService(Context.NOTIFICATION_SERVICE); Notification note=new Notification(R.drawable.stat_notify_chat, "Android Example Status message!", System.currentTimeMillis()); // This pending intent will open after notification click PendingIntent i=PendingIntent.getActivity(this, 0, new Intent(this, NotifyMessage.class), 0); note.setLatestEventInfo(this, "Android Example Notification Title", "This is the android example notification message", i); //After uncomment this line you will see number of notification arrived //note.number=2; mgr.notify(NOTIFY_ME_ID, note);
  • 0 Votes
    3 Posts
    3 Views
    U
    you can go with notification alert setContentView(R.layout.notification_alert); /*********** Create notification ***********/ final NotificationManager mgr=(NotificationManager)this.getSystemService(Context.NOTIFICATION_SERVICE); Notification note=new Notification(R.drawable.stat_notify_chat, "Your Status message!", System.currentTimeMillis()); // This pending intent will open after notification click PendingIntent i=PendingIntent.getActivity(this, 0, new Intent(this, NotifyMessage.class), 0); note.setLatestEventInfo(this, "Your Notification Title", "This is the Your notification message", i); //After uncomment this line you will see number of notification arrived //note.number=2; mgr.notify(NOTIFY_ME_ID, note); Regards,
  • MainActivity or MainFragment?

    android java com xml question
    1
    0 Votes
    1 Posts
    2 Views
    No one has replied