Tag Archive: Android

RTL support on android

Hola everyone,
Long time no see :D I was making an app based on hebrew language. Its true that hebrew is not fully supported on all android phones. On some device it may work RTL and on some hebrew won’t be supported at all. Anyway here i am again to share something that i learned. On devices that supported hebrew(rendering) had a minor issue, lets say there is a number 52 on a hebrew sentence and when u try to display this sentence then 52 number is displayed reverse i.e 25. Now just imagine how messed up will whole sentence be because of this reverse number. Thus i found loophole in new android RTL support. So i had to do something about it as this was full hebrew language based app. I was using textview to display this hebrew sentence and this sentence was coming from xml web service. So i came up with my awesome solution. I chose to use webview to render/display hebrew sentence with html formatting. SO my code looked like this to prepare html:

public static String BuildHtml(String hebrewText)
{       
StringBuilder sb = new StringBuilder();
sb.append(“<html>”);
sb.append(“<meta http-equiv=\”Content-Type\” content=\”text/html;charset=utf-8\”>”);
sb.append(“<body style=\”direction:rtl;\”>”);
sb.append(“<font color=#000000>”);
sb.append(hebrewText.trim());
sb.append(“</body>”);
sb.append(“</html>”);
       
return sb.toString();
}

Now i load my html on a webview by calling my method that returns my hebrew string encoded in html format.

webView.loadData(BuildHtml(myHebrewText), “text/html”, “utf-8″);

This code worked flawlessly. The number 56 was getting displayed as 56 in a hebrew sentence.
I hope this helps those who faced simillar problem.

Gracias.

Hola everyone,
Been very busy and christmas season on way. Anyway i am here again and have something to show and tell. There was a project i was working on, and i want to send some email message from my app. So i used an intent to open up options of my email clients installed on my device. So its not a big deal to use an intent and i used android.content.Intent.ACTION_SEND and i got the options. But i didn’t just got email clients but also other communication app like text message, dropbox, facebook, twitter etc. That i didn’t want it. I just wanted email clients to show up i.e like email, gmail, hotmail, email text only(or other email client u have installed). After doing research for long hours i came up with 2 solutions. First solution works but not perfect and second solution is just awesome, works perfectly. But first i’l show my code that i used before:

String[] recipients = new String[]{“sendme@me.com”, “”};
Intent testIntent = new Intent(android.content.Intent.ACTION_SEND);
testIntent.setType(“text/plain”);
testIntent.putExtra(android.content.Intent.EXTRA_SUBJECT, “blah blah subject”);
testIntent.putExtra(android.content.Intent.EXTRA_TEXT, “blah blah body message”);
testIntent.putExtra(android.content.Intent.EXTRA_EMAIL, recipients);
startActivity(testIntent);

Well the above code doesn’t work if u need just email clients to show but this code shows all communication apps. So i decided to change setType of intent from (“text/plain”) to (“text/email”).

testIntent.setType(“text/email”);

Well it did filter some apps but still not perfect because it still showed some apps like andFTP, dropbox, google docs etc.
Now i had to do some serious research, i asked in forum but didn’t got much help and then i stumbled into one post that asked similar question on stackoverflow. So i found 2 solution, both works, one is not too perfect but works in most scenario, and second solution is awesomely perfect, well it worked for me so u have to test yourself to see if it works for u :P

Solution 1:
just change setType to “message/rfc822″. Yes this works but with very minor flaw. It filtered out all communicatio app exept one, i.e andFTP yeah it didn’t filtered out andFTP and this ruined it. But it filtered out others and showed only email clients.

String[] recipients = new String[]{“sendme@me.com”, “”};
Intent testIntent = new Intent(android.content.Intent.ACTION_SEND);
testIntent.setType(“message/rfc822″);
testIntent.putExtra(android.content.Intent.EXTRA_SUBJECT, “blah blah subject”);
testIntent.putExtra(android.content.Intent.EXTRA_TEXT, “blah blah body message”);
testIntent.putExtra(android.content.Intent.EXTRA_EMAIL, recipients);
startActivity(testIntent);

Now Solution 2, which worked perfectly for me. here you don’t use android.content.Intent.ACTION_SEND but Intent.ACTION_VIEW

Intent testIntent = new Intent(Intent.ACTION_VIEW);
Uri data = Uri.parse(“mailto:?subject=” + “blah blah subject” + “&body=” + “blah blah body” + “&to=” + “sendme@me.com”);
testIntent.setData(data);
startActivity(testIntent);

filtering non email client programs


Well above code just worked perfectly for me. It filtered out all other communication apps and showed just exclusive email client programs. I hope this works for you also.

Gracias.

Dude where is my javascript ?

Hola everyone,
a very hectic schedule going on this season. Working my ass off in my upcoming ambitious project. Anyway i am here and writing about just very basic problem that i faced. For a game project i wanted to show leaderboards, for this part i decided to use web view to show leaderboards page optimized for device. It has some javascript function that is doing its stuff of retrieving leaderboards details and all that. So i wrote a line to load the url pointing to my leaderboard page and guess what it didn’t rendered fully and i was again left scratching my head :D . Then after going through many testing i found that stuffs that were dependent on javascript were not getting rendered on my web view so i got the root of the problem i.e dude where is my javascript ? . Then i did a peroid(.) operator on my webview reference variable and found a method setJavaScriptEnabled(), so i did something like this:

webView.getSettings().setJavaScriptEnabled(true);

and yeah u guessed it right, it rendered fully after calling that method. So i guess by default javascript is disabled on webview. Phew.

Gracias.

Hola everyone,

While working on android project i got myself into a situation where i had to start an activity from non-activity class (a class that doesn’t extend Activity), and i had no other option that time. So lets say there is a class called DummyClass having a dummyMethod() and i had to start an activity called MeActivity, so i wrote this to start an activity, a rough pseudocode:

DummyClass{

dummyMethod(){
Intent dummyIntent = new Intent(DummyClass.this, MeActivity.class);
this.startActivity(dummyIntent);
}

}

Well as i had my doubts earlier above code is a garbage cuz there is no startActivity() method in my dummyclass. So i did something which worked for me. I declared a public static Context reference variable in MeActivity class and in its constructor i assigned its instance to variable. Here is the code that will look like:

public class MeActivity extends Activity{
     public static Context meActivityContext;
     public FavoritesActivity(){
         MeActivity.meActivityContext=this;
     }
}

So that was it. Now i used this context variable to start my activity from non-activity class.

DummyClass{

dummyMethod(){
     Intent dummyIntent = new Intent(MeActivity.meActivityContext, MeActivity.class);
     MeActivity.meActivityContext.startActivity(dummyIntent);
}

}

well that worked for me, hope it works for you too.

Gracias.

Hide soft keyboard: Android

I just wanted to share two ways about hiding your soft keyboard. When i was making a screen for submitting score to leaderboards, when i touch edittext to enter my name soft keyboard appears and when i click submit button i wanted that soft keyboard to disappear so i found this one way to do that:

InputMethodManager inputManager = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);                              inputManager.hideSoftInputFromWindow(Test.this.getCurrentFocus().getWindowToken(), InputMethodManager.HIDE_NOT_ALWAYS);

Now for second issue that i faced, i had a AutoCompleteTextView on my one application activity so whenever that activity takes screen a soft keyboard appears with focus on autocomplete obviously. This thing didn’t happened with EditText. But whenever i had autocompletetextview soft keyboard appears automatically. I didn’t wanted this. Instead i wanted soft keyboard to appear only when i touch AutoCompleteTextView. But i found a simple solution for this:

<activity android:name=“.MyActivity”
                        android:windowSoftInputMode=“stateAlwaysHidden”>

yeah just add android:windowSoftInputMode=”stateAlwaysHidden” attribute to activity tag, so whenever my activity takes screen keyboard will not show up until i touch any editable view. This has worked for me till now, so you can give it a try.

Gracias

Well i have been playing around a lot with android client connectivity with remote MySQL database. Lately i wanted a UI/View, something input textfield, i wanted to show completion suggestions automatically in a drop down menu while the user is typing, suggestions would be coming from MySQL database. Basically whenever i type, i am calling php sending the input and php will query database and return the values(in my case just names) that have “input” as substring (like if i type ‘pa’ then it would return names that have ‘pa’ as substring). I am sending results to android client via encoded json. In android side i am decoding json and filling my ArrayAdapter. Lets see the points that are being done:

1) PHP

<?php
mysql_connect(“localhost”,“root”,“”);
mysql_select_db(“dalalstreet”);
 
$st = $_REQUEST[‘st’];

$q= mysql_query(“SELECT * FROM world WHERE company LIKE ‘%”.$st.“%’”);

while($e = mysql_fetch_assoc($q))
        $output[]=$e;
 
print(json_encode($output));
 
mysql_close();
?>

I somehow looking at google i wrote this code. This php gets the input text from my android and it runs query at database for records whose company names has “input text” as a substring. You can see the query statement above. In the end it encodes the result in json.

2) Main.xml (my layout)
Here is the xml layout file for my ui.

<?xml version=“1.0″ encoding=“utf-8″?>
<LinearLayout xmlns:android=“http://schemas.android.com/apk/res/android”
    android:orientation=“vertical”
    android:layout_width=“fill_parent”
    android:layout_height=“fill_parent”
    >

<TextView 
    android:layout_width=“wrap_content”
    android:layout_height=“wrap_content”
    android:text=“@string/country_label”
    />

<CustomAutoCompleteView
        android:id=“@+id/autoCompleteCountry”
        android:layout_width=“fill_parent”
        android:layout_height=“wrap_content” />

</LinearLayout>

3) Main Activity class
Here is the main class that extends Activity. Here is the code of calling php module and parsing json. I have explained this all in my previous post so you could go through it. i’l explain just AutoCompleteTextView part here.

import java.io.BufferedReader;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.util.ArrayList;

import org.apache.http.HttpEntity;
import org.apache.http.HttpResponse;
import org.apache.http.NameValuePair;
import org.apache.http.client.HttpClient;
import org.apache.http.client.entity.UrlEncodedFormEntity;
import org.apache.http.client.methods.HttpPost;
import org.apache.http.impl.client.DefaultHttpClient;
import org.apache.http.message.BasicNameValuePair;
import org.json.JSONArray;
import org.json.JSONException;
import org.json.JSONObject;

import android.app.Activity;
import android.os.Bundle;
import android.text.Editable;
import android.text.TextWatcher;
import android.util.Log;
import android.widget.ArrayAdapter;

public class AutoComptest extends Activity {
   
        private CustomAutoCompleteView autoComplete;        
        
        private ArrayAdapter<String> autoCompleteAdapter;
       
        /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
       
        autoCompleteAdapter = new ArrayAdapter<String>(this, android.R.layout.simple_dropdown_item_1line);
        autoCompleteAdapter.setNotifyOnChange(true); // This is so I don’t have to manually sync whenever changed 
        autoComplete = (CustomAutoCompleteView)  findViewById(R.id.autoCompleteCountry);
        autoComplete.setHint(“Country”);
        autoComplete.setThreshold(3);
        autoComplete.setAdapter(autoCompleteAdapter);
       
        autoComplete.addTextChangedListener(textChecker);
       
    }
   
    final TextWatcher textChecker = new TextWatcher() {
        public void afterTextChanged(Editable s) {}
 
        public void beforeTextChanged(CharSequence s, int start, int count, int after) {}
 
        public void onTextChanged(CharSequence s, int start, int before, int count)
        {
                   
                autoCompleteAdapter.clear();
               
                callPHP();
                               
        }     
    };
   
    private void callPHP(){
        String result = “”;        
        InputStream is=null;       
        try{
                ArrayList<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>();
                nameValuePairs.add(new BasicNameValuePair(“st”,autoComplete.getText().toString()));
                HttpClient httpclient = new DefaultHttpClient();
                HttpPost httppost = new HttpPost(“http://10.0.2.2/gaanza_android/android_database.php”);
                httppost.setEntity(new UrlEncodedFormEntity(nameValuePairs));
                HttpResponse response = httpclient.execute(httppost);
                HttpEntity entity = response.getEntity();
                is = entity.getContent();
        }catch(Exception e){
                Log.e(“log_tag”, “Error in http connection “+e.toString());
        }
       
        try{                        
                BufferedReader reader = new BufferedReader(new InputStreamReader(is,“iso-8859-1″),8);
                StringBuilder sb = new StringBuilder();
                String line = null;
                while ((line = reader.readLine()) != null) {                                   
                            sb.append(line + \n);
                }
                is.close();
        
                result=sb.toString();          
        }catch(Exception e){
                Log.e(“log_tag”, “Error converting result “+e.toString());
        }
       
        //parse json data
        try{
                JSONArray jArray = new JSONArray(result);
                for(int i=0;i<jArray.length();i++){
                        JSONObject json_data = jArray.getJSONObject(i);                               
                      
                        autoCompleteAdapter.add(json_data.getString(“country”));
                }
        }
        catch(JSONException e){
                Log.e(“log_tag”, “Error parsing data “+e.toString());
        }
    }
}

Note: remember “http://10.0.2.2/” in my last post. I had to use 10.0.2.2 instead of localhost because emulator consider itself as localhost and my xammp local server is not in emulator localhost.

Ok so i want to detect an event when a text is typed/deleted from my autocompletetextview, basically i want a listener which detects a change in text of my view. So what should we do ? Well in my case i searched the android developer documentation :D , there i found something called TextWatcher. What i am doing is attach a TextWatcher object to editable like my AutoCompleteTextView so whenever any text changes in my editable the functions/methods of TextWatcher will be called and in these methods i had to write my logic codes which is what i want to achieve if text changes in autocompletetextview ?. There are three abstract methods in TextWatcher class so you have to override them, well anyway thats what we wanted. Methods are:

afterTextChanged(Editable s)
beforeTextChanged(CharSequence c, int start, int count, int after)
onTextChanged(CharSequence c, int start, int before, int count)

Best way to understand them is going through the document here. Anyway i had to write my logic code on beforeTextChanged() method so that it performs action whenever there is a change in text of autocompletetextview.

In above code sample i am calling PHP whenever i am typing something. So i am calling callPHP function at onTextChanged() method. So whenever i type something it will call PHP giving text to the function in PHP and PHP will query MySql database for results and PHP will send results to me in json. This is it. So i decode json and fill the results in ArrayAdapter after clearing it, whenever ArrayAdapter changes it notify the changes being made and AutoCompleteView will show the new drop down suggestions.

There was still one very minor problem and i solved it with my another very stupid solution :P So problem was that whenever the results from database gets filled in ArrayAdapter and AutoCompleteTextView shows drop down suggestions, it showed me filtered suggestions like suppose i type “can” and i get results(which has “can” as substring) from database, so for “can” ArrayAdapter contents get filtered and i get suggestion starting with text “can” which i didn’t wanted because i already has got filtered results from database and i wanted to show all results that i am receiving from database. So for this i had to write my custom AutoCompleteTextView. It isn’t hard at all, i just had to extend AutoCompleteTextView and override the methods.

4) CustomAutoCompleteView which extends AutoCompletetextView

public class CustomAutoCompleteView extends AutoCompleteTextView {
       
        public CustomAutoCompleteView(Context context) {
                super(context);
                // TODO Auto-generated constructor stub
        }

        public CustomAutoCompleteView(Context context, AttributeSet attrs) {
                super(context, attrs);
                // TODO Auto-generated constructor stub
        }

        public CustomAutoCompleteView(Context context, AttributeSet attrs,
                        int defStyle) {
                super(context, attrs, defStyle);
                // TODO Auto-generated constructor stub
        }
       
        @Override
        protected void performFiltering(final CharSequence text, final int keyCode) {
                String filterText = “”;
                super.performFiltering(filterText, keyCode);
        }
    /**
    * After a selection, capture the new value and append to the existing
    * text
    */

    @Override
    protected void replaceText(final CharSequence text) {
        super.replaceText(text);
    }

}

How to remove the filter on an ArrayAdapter used in an AutoCompleteTextView? I had to override performFiltering() method. In this method i am telling AutoCompletetextView to not filter any suggestions, just show all suggestions. I searched on google for this topic but i didn’t find any good solution, maybe i didn’t searched it properly. Whatever, i just wrote a stupid trick to remove any filter, actually instead of technically removing filter i am adding a filter which does a job to show all suggestions :D . I defined a filter which filters all suggestion based on “” yeah a blank string :D . But this works like a charm. Just try it.

So now your are getting results suggestion from database dynamically to AutoCompleteTextView.

But But But But But ok enough, In above code way of fetching data from database to AutoCompletetextView just sucks. Never never ever call a http PHP call in UI Thread. I did a lot of testing with this code. When i was getting small number of results from Database(live database not local) it was working fine but when i was getting large number of results say more than 150 and it was taking a bit of time which caused my UI to be non-responsive and thus famous FORCE CLOSE occured. So never call it from UI thread because u don’t know how much time it will take to complete whole http connection. So always call it in separate thread that i will discuss in Part II of this subject. yes i’l be posting new better version of same problem.

Gracias

While working on submitting and retrieving global game high scores from a remote database like mysql i learned few things. During start experiment i decided to use PHP to connect to mysql database. What i was trying to do is that i wanted to call php, then php would make a database connection and make a sql query and retrieve the result, then php would encode that result into JSON format and i would decode this JSON at my android program and display the results. I haven’t done much PHP before(never actually setup PHP server before :D ). So i came to know this xampp server, so i installed/setup the xampp server(its a php apache server and it comes with mysql also). I am not telling how to setup xampp and create a databse and tables as you can find it in their wiki.

I create a php file, which makes a database connection and makes a query and encodes a result. As i told before i am not familiar to PHP so i wrote this code looking here and there by googling it :D . Code looks like this:

<?php
mysql_connect(“host”,“username”,“password”);
mysql_select_db(“yourdatabsename”);
 
$q=mysql_query(“SELECT * FROM yourtable”);
while($e=mysql_fetch_assoc($q))
        $output[]=$e;
 
print(json_encode($output));
 
mysql_close();
?>

Well code is not that hard to understand. You are making a mysql connection by providing credentials. Then you select a databse. Then you execute a query and result is assigned to $q. Next what i seen is that result is in ArrayCollection type (i saw it in xampp console) so i think we are converting it into Array while iterating through collection(I am not quite sure so if u know then please share). Then You are just encoding the result into JSON.

Now lets see how we will decode the JSON at our android program. Code looks like this:

void parseJSON()
    {
       
        String result = “”;
        String x = “”;
        InputStream is=null;
        //http post
        try{
                ArrayList<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>();
                HttpClient httpclient = new DefaultHttpClient();
                HttpPost httppost = new HttpPost(“http://localhost/game_php_testing/android_database.php”);
                httppost.setEntity(new UrlEncodedFormEntity(nameValuePairs));
                HttpResponse response = httpclient.execute(httppost);
                HttpEntity entity = response.getEntity();
                is = entity.getContent();
        }catch(Exception e){
                Log.e(“log_tag”, “Error in http connection “+e.toString());
        }
        //convert response to string
        try{
                
                BufferedReader reader = new BufferedReader(new InputStreamReader(is,“iso-8859-1″),8);
                StringBuilder sb = new StringBuilder();
                String line = null;
                while ((line = reader.readLine()) != null) {
                        sb.append(line + \n);
                }
                is.close();
        
                result=sb.toString();
                
        }catch(Exception e){
                Log.e(“log_tag”, “Error converting result “+e.toString());
        }
        
        //parse json data
        try{
                JSONArray jArray = new JSONArray(result);
                for(int i=0;i<jArray.length();i++){
                        JSONObject json_data = jArray.getJSONObject(i);                                    
                        
                        Log.i(“log_tag”,“id: “+json_data.getString(“id”)+
                                “, name: “+json_data.getString(“Player_name”)+
                                “, price: “+json_data.getDouble(“score”)
                        );
                }
                
        }
        catch(JSONException e){
                Log.e(“log_tag”, “Error parsing data “+e.toString());
        }
    }

I faced two problems/exception while connecting to php. PHP was connecting to mysql perfectly as when i run in browser it printed results so there was some issues on my above code which i’l address here and this is common problems which will be faced by every newcomer to android like me :D . Before that i’l just explain my php file and localhost path setup. When i installed xampp, in xampp folder there must be folder called htDocs so i have to make a project folder here inside htDocs and inside this project folder will be my php. So my php path would look like this “/htDocs/game_php_testing/android_database.php” So when i will make a call to php via “http://localhost/game_php_testing/android_database.php”

Now i will address the two problems that i faced.
First,

java.net.socketexception -permission denied

yes whenever i was trying to call my php i was getting this exception. How did i solved it ??? Well i just provided a permission to internet access at AndroidManifest.xml file. You have to put this permission above tag

<uses-permission android:name=“android.permission.INTERNET” />

Now second Problem, this one is very important.

java.net.ConnectException -Connection Refused.

Well what i found is that when u call localhost android thinks that u r calling to android emulator itself not the localhost machine. So localhost/127.0.0.1 wouldn’t work. So i found the solution to that: instead of localhost use 10.0.2.2, code will be like this:

HttpPost httppost = new HttpPost(“http://10.0.2.2/game_php_testing/android_database.php”);

Well problem solved :D . Now i decode the json that i got from php. I am printing the result on LOG. Please see that when i am calling “json_data.getString(“Player_name”)“, Player_name is a column/attribute in my database table and its type is varchar so i used getString() on it.

I hope this post helped you as you may also faced similar problem at first time.

Gracias.

Chrome to phone

Well i have been using chrome to phone extension on my android 2.2.2, and its so magic and useful in my daily life. Anyway Chrome to Phone app is available on android market. But in some countries it is not available. In my country it wasn’t available in market so i found the apk file of google chrome to phone in some website forum that i don’t remember. So if u want to download and install this app on your android then scan this link:google chrome to phone

The App version is 2.2.0

I installed the extension plugin for my chrome browser from chrome web store. Here is the video on installing and using and what its all about:

Gracias.

Adobe Flash on Android ?


I have seen demos showing flash sites opening on high end android devices like HTC Desire HD or Nexus One. So i was looking through the posts about installing adobe flash player 10.1 on my lg optimus one p500 (android 2.2). The author of that particular blog explained a few steps to install flash 10.1 on android 2.2 phones (specifically mentioning my p500),

1) First The author provided a link to adobe flash player 10.1 as it is not available in android market right now(flash player 10.3 is available). So I downloaded it and installed it on my lg optimus p500. It got installed without having any trouble.
2) I restarted my android phone.
3) I opened my android browser and opened a flash web site.

And guess what?????? yay it worked………….not…………no it didn’t worked :P .
Browser just closed in between loading site. I tried with all browsers on my phone viz Opera, Skyfire, Dolphin HD, same result on all browser. All browser crashed.

So i guess flash player is not supported on my device. But i don’t care hehe :P

Gracias.

I have been doing game development on android very recently (2 weeks) :D . And i bought samsung galaxy having android 2.1 to test my games and demos. I am pretty happy with the results and enjoying very much. Before this i had made games for j2me mobile devices and still making. Well anyway i am not discussing android game development here so i am coming to the primary focus of this post.

Physics. Yeah physics is phun and if decent physics is added to your game then it makes game more enjoyable, of course if gameplay design is good and fun. I have been playing with my own very very basic physics code(collision detection, collision response) that i have written for j2me. It is working fine in android after tweaking my code here and there. But i wanted more features so i thought to look for any decent free opensource physics engine for android. Unfortunately i didn’t get much success. There were some forums and tutorials where using Box2d with android was discussed. This site has shown the tutorial using JBox2d on android and is been discussed by the people there.

I am a big fan of Box2d. I have been using JBox2d and Box2d flash for my respective platform based game. Library had fulfilled my satisfaction and need. I have not tested JBox2d on android yet. I wanted to do few research on it before doing that. In few forums people complained that if using more than 5 bodies, it brings the FPS rate down and makes simulation very slow. I haven’t checked that but is going to write code to see if its true. I think it may depend on hardware device specification and capability because i have played Angry Birds on my samsung galaxy s and physics of game works just fine and smooth. I came across one site where they showed the graph on how much number of bodies/elements effect the FPS(frame rate) using Box2d and Chipmunk. Here it is.

So now i am going to write a simple code of falling polygons using Box2d on android and see the FPS and performance. I will post the results and my experience on next post ASAP.

Merry Christmas & Happy New Year
Gracias.