[android-developers] android auto desktop head unit keeps displaying "waiting for phone"

2017-02-15 Thread saj raza
After setting up the DHU with adb forward commands, starting the head unit 
server and even with installs of the messaging and media apks, the screen 
just says waiting for phone with nothing popping up. The other screen shows 
adb connected to the host. .P.S. worked fine till last week, issue only 
started occurring after recent update of Android Auto app if that has to do 
with anything. any ideas?

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/ebee901f-0c2f-4dd4-a7d6-b08d65e7dc66%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: Nested JSON Parsing with Volley

2013-09-06 Thread Raza Rahil Hussain
The emulator is showing "Parse error".

On Friday, September 6, 2013 12:34:51 AM UTC+5:30, Raza Rahil Hussain wrote:
>
> Hello everyone,
> I'm trying to parse Nested JSON with Volley Library but i'm getting 
> problem somewhere catching object. Any can please look up the code -> 
> https://gist.github.com/razarahil/6149775
>

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


[android-developers] Nested JSON Parsing with Volley

2013-09-05 Thread Raza Rahil Hussain
Hello everyone,
I'm trying to parse Nested JSON with Volley Library but i'm getting problem 
somewhere catching object. Any can please look up the code -> 
https://gist.github.com/razarahil/6149775

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


[android-developers] Android PDF Support!

2013-01-08 Thread Kumail Raza
Android dont have any PDF builtin library for manipulating and creating 
PDFs,

After a long searching over open source library for android, as I have to 
create an app for Reading PDF files, converting to image, using cropBox, 
and other functionality, fast rendering, selecting and highlighting!

I have found some but they are not free, those which are free are not 
completed, what the hell, even I cant built free app on opensource suckers!

but what I must say, Android have come to version 4.2, but even not 
resolved such Issues for their developers.

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

[android-developers] Re: Android Memory Management

2013-01-08 Thread Kumail Raza
Everything have some solution, just have to think, have to use some 
tactics, techniques, approaches, as for my suggestion one thing you can do.

Save each form in sqliteDB after that on final form submission, simply run 
the process for creating PDF.

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

[android-developers] Foursquare Places JSON data not showing in the list View

2012-06-04 Thread Raza Rahil Hussain
I'm trying to parse Foursquare places into android application and i got 
success as i can view the JSON data in Logcat but listview is not showing 
any data. 
Here is the code:

public class FoursquarePlacesActivity extends ListActivity {
>   
>   private ProgressDialog dialog;
>   private static final String foursquareClientid="Clientid";
>   private static final String foursquareClientsecret="clientsecret";
>   
>   private static String 
> url="https://api.foursquare.com/v2/venues/explore?ll=24.58,73.68&client_id="; 
> +foursquareClientid + "&client_secret=" +foursquareClientsecret;
>   
> //JSON Nodes Name that Foursquare will throw
>   
>   private static final String GROUPS="groups";
>   private static final String NAME_TAG = "name";
>   
>   ArrayList> venueList;
>   
>   
>   
>   @Override
> public void onCreate(Bundle savedInstanceState){
> super.onCreate(savedInstanceState);
> setContentView(R.layout.main);
>
> venueList=new ArrayList>();
>
> new getPlaces().execute();
>   
> }
>   
>   //AsyncTask starts here
>   public class getPlaces extends AsyncTask{
>
>   
> @Override
> protected void onPreExecute(){
>   super.onPreExecute();
>   dialog=new ProgressDialog(FoursquarePlacesActivity.this);
>   dialog.setMessage("Please wait");
>   dialog.setIndeterminate(false);
>   dialog.setCancelable(false);
>   dialog.show();
> }
>   
>   @Override
>   protected String doInBackground(String... args) {
>   // TODO Auto-generated method stub
>   
>   List params=new 
> ArrayList();
>   
>   JSONObject 
> json=JSONParser.makeHttpRequest(url,"GET",params);
>   JSONArray groups= null;
>   Log.d("Inbox JSON:", json.toString());
>   
>   try{
>groups=json.getJSONArray(GROUPS);
>   
>   //looping all the objects of Groups
>   for(int i=0;i   JSONObject 
> group=(JSONObject)groups.get(i);
>   //Editing part (may be incorrect
>   JSONArray 
> items=(JSONArray)group.getJSONArray("items");
>   
>   for (int j=0;j   JSONObject 
> item=(JSONObject)items.get(j);
>   //Editing part end
>   //Store json item in variable
>   String 
> name=item.getString(NAME_TAG);
>   HashMapmap=new 
> HashMap();
>   
>   map.put(NAME_TAG, name);
>   
>   venueList.add(map);
>   }
>   
>
>   }   
>   
>
>   } catch (JSONException e){
>   e.printStackTrace();
>   }
>
>   return null;
>   }
>   
>   protected void onPostExecute(String file_url){
>   dialog.dismiss();
>   
>   runOnUiThread(new Runnable(){
>   public void run(){
>   ListAdapter adapter=new 
> SimpleAdapter(FoursquarePlacesActivity.this, venueList,R.layout.list_item,new 
> String[]{ NAME_TAG },new int[] { R.id.name });
>
>   setListAdapter(adapter);
>
>   ListView lv = getListView();
>
>   // Launching new screen on 
> Selecting Single ListItem
>   lv.setOnItemClickListener(new 
> OnItemClickListener(){
>   
>   
>   @Override
>   public void 
> onItemClick(AdapterView parent, View view,
>   int position, long 
> id) {
>   
>   String 
> name=((TextView)view.findViewById(R.id.name)).getText

[android-developers] Minimum Age?

2011-06-20 Thread Mehwar Raza
Is there a minimum age requirement to become an android developer? I
have been trying to hunt down the answer to no avail.

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] Need help in ListActivity inside TabActivity

2011-06-01 Thread Raza Rahil Hussain
I'm trying to embed listactivity inside Tab. but when i run the
application. It stop working and force me to close the app. Take a
look to program in below link.

http://dl.dropbox.com/u/16910648/RazzilCity.zip

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] Re: android market 2.3.0

2011-02-11 Thread RAza
sir, you mean we can't test "in-app billing" sample application ???

On Feb 4, 7:29 am, Trevor Johns  wrote:
> On Thu, Feb 3, 2011 at 1:27 PM, Mark Murphy  wrote:
> > > All my devises had 2.2.11 android marquet app. Is there a way to
> > > update it?
>
> > Wait for an update. AFAIK, 2.3.0 does not yet exist.
>
> This is correct. We haven't released 2.3.0 yet.
>
> When it's released, you'll get it automatically. (Market has the ability to
> auto-update itself.)
>
> --
> Trevor Johns
> Developer Programs Engineer, Androidhttp://developer.android.com

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] Student Education Loan

2009-10-27 Thread Muhammad Ahmad Raza
Hi Dear



If you want to learn about education loan, how to get education loan. Then
this following site is best to help in this regard.





www.educatloan.blogspot.com





Thank for joining this site

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: android-developers - 25 new messages in 16 topics - digest

2009-07-31 Thread Muhammad Ahmad Raza
Hi.



Join this link to visit world’s best historical places. Visiting my website
you feel that actually you are traveling these places in real.


www.love-pak.blogspot.com

Ahmad

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] opening H264 file in binary format

2008-09-02 Thread Raza

anybody can help me how to open h264 video file in binary format?

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
[EMAIL PROTECTED]
Announcing the new Android 0.9 SDK beta!
http://android-developers.blogspot.com/2008/08/announcing-beta-release-of-android-sdk.html
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---