[android-developers] ContentResolver Query Joining with SQL Lite Table

2013-02-03 Thread fahad mullaji
Hi Guys,

I am getting all songs from SDCARD using below code,

Cursor objCursor;
final String[] projection = {"*"};

objCursor =
objContext.getContentResolver().query(MediaStore.Audio.Media.EXTERNAL_CONTENT_URI,
projection,
null,
null,
null);

I have one SQL Lite table named PlayerHistory. I want to inner join this
table on MediaId on above query . Is it possible?


Thanks in advance
Fahad Mullaji

-- 
-- 
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] Re: ContentResolver Query Joining with SQL Lite Table

2013-02-03 Thread fahad mullaji
Checked this link... looks like this is not possible

http://stackoverflow.com/questions/2495657/am-i-able-to-run-sql-functions-on-a-contentresolver-columns-query

Thanks
Fahad Mullaji


On Sun, Feb 3, 2013 at 2:12 PM, fahad mullaji wrote:

> Hi Guys,
>
> I am getting all songs from SDCARD using below code,
>
> Cursor objCursor;
> final String[] projection = {"*"};
>
> objCursor =
> objContext.getContentResolver().query(MediaStore.Audio.Media.EXTERNAL_CONTENT_URI,
> projection,
> null,
> null,
> null);
>
> I have one SQL Lite table named PlayerHistory. I want to inner join this
> table on MediaId on above query . Is it possible?
>
>
> Thanks in advance
> Fahad Mullaji
>
>


-- 
Regards
Fahad Mullaji

-- 
-- 
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] Overlap PagerTabStrip

2013-03-18 Thread fahad mullaji
Hi  All,

I have custom view_pager. And i am using pagertabstrip to show view title.
but the view and pager title strip are overlapping with each other when i
am swiping to change view. Am i missing anything? Please comment on below
code.

 
  



Thanks And Regards
Fahad Mullaji

-- 
-- 
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] Admob 4.1.1

2013-08-04 Thread fahad mullaji
Does anybody have copy of admob sdk 4.1.1 version?


-- 
Regards
Fahad Mullaji

-- 
-- 
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] Re: Admob 4.1.1

2013-08-04 Thread fahad mullaji
Got it
if somebody needs it
https://dl.dropboxusercontent.com/u/52830639/GoogleAdMobAdsSdk-4.1.1.jar

Thanks


On Sun, Aug 4, 2013 at 2:33 PM, fahad mullaji wrote:

> Does anybody have copy of admob sdk 4.1.1 version?
>
>
> --
> Regards
> Fahad Mullaji
>
>


-- 
Regards
Fahad Mullaji

-- 
-- 
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] SMS Receiver Issue

2013-09-07 Thread fahad mullaji
Guys,

If user has installed handcent application on his/her device then my code
is not catching receive sms event.

Anybody faced such issue?

-- 
Regards
Fahad Mullaji

-- 
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.


Re: [android-developers] Re: MediaCodec configure() MediaCrypto parameter

2012-07-23 Thread fahad mullaji
Hi Sunghyun,

I am making an application which converts .mp3 to other format which
comparatively takes less space in the sdcard.if you could share link or
just a beginners guide that will be appreciated.

Thanks
Fahad Mullaji

On Sun, Jul 22, 2012 at 3:18 PM, Sunghyun Yoo
wrote:

> You can set null for crypto param.
> ex) codec.configure(format, null /* surface */,* null /* crypto */*, 0 /*
> flags */);
>
> 2012년 7월 21일 토요일 오전 5시 45분 18초 UTC+9, ssocco 님의 말:
>
>> Hello,
>>
>> I'm working with the Jelly Bean MediaCodec API, trying to configure a
>> decoder and display pipeline for an open (unencrypted) container. How
>> should I create a MediaCrypto object for the configure() API?
>>
>> Thanks, Steve
>>
>  --
> 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
>



-- 
Regards
Fahad Mullaji

-- 
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

Re: [android-developers] Binding service from Simple Java Class

2012-07-30 Thread fahad mullaji
Hi *Moni*,

Bind a service? Please elaborate the question.
If you want to use Java packages then surely you can use them without any
compile error.
It does not have to inherit any android component.

What is the error that you are getting?

*Thanks*
Fahad Mullaji

On Mon, Jul 30, 2012 at 1:46 PM, MMM  wrote:

> HI,
>
> I am developing an android application. In this application, I want to
> bind a service from a java class which is not derived from any android
> component. Is it possible?
>
>

> I tried but its giving error.
>
> Thanks.
>
> --
> 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
>



-- 
Regards
Fahad Mullaji

-- 
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

Re: [android-developers] Please help

2012-07-30 Thread fahad mullaji
Hi *Abhijit,

*
http://stackoverflow.com/questions/4282552/android-library-projects-cannot-be-launched

Check above shared link.Don't know this works or not.Give it shot.

*Thanks
*Fahad Mullaji


On Sat, Jul 28, 2012 at 9:11 PM, Abhikool  wrote:

> Hi Guys, I am new to Android apps development..
>
> please help me. I am facing an error whenever i am trying to run a project
> from eclipse as android application. it is giving  me an error
> stating "Android Library Projects cannot be lunch."
>
>  I have started android apps development very recently, please forgive me
> for my ignorance or total unawareness about the topic.
> Would appreciate if any one direct me to any tutorial or any material
> related to Android apps development containing the latest
> trends and use of tools/SDK etc.
>
> Regards
>
> --
> 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




-- 
Regards
Fahad Mullaji

-- 
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

Re: [android-developers] Debugging a complex native application (shared libs)

2012-07-30 Thread fahad mullaji
Lols...good one...

On Mon, Jul 30, 2012 at 1:11 PM, Fabien R  wrote:

> On 29/07/2012 21:25, Cyril CHAMPIER wrote:
> > I really don't know what do to, does anybody already tried this kind of
> > things ?
> >
> > Thanks
> >
> >
> Maybe this:
> http://lmgtfy.com/?q=android+how+to+debug+jni
>
>
> --
> 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
>



-- 
Regards
Fahad Mullaji

-- 
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

Re: [android-developers] Re: Idle Actvity

2012-07-30 Thread fahad mullaji
Hi *Rahul*,

Have you created any runnable or handler objects projects in any of the
function that you are calling?
What is exactly your code is trying to do?

*Thanks*
Fahad Mullaji



On Mon, Jul 30, 2012 at 12:56 PM, Rahul Kaushik wrote:

> Hi,
>
> Am getiing this
>
>
> [2012-07-30 12:39:21 - ddms] null
> java.lang.NullPointerException
> at com.android.ddmlib.Client.sendAndConsume(Client.java:573)
>  at com.android.ddmlib.HandleHello.sendHELO(HandleHello.java:142)
> at com.android.ddmlib.HandleHello.sendHelloCommands(HandleHello.java:65)
>  at com.android.ddmlib.Client.getJdwpPacket(Client.java:672)
> at
> com.android.ddmlib.MonitorThread.processClientActivity(MonitorThread.java:317)
>  at com.android.ddmlib.MonitorThread.run(MonitorThread.java:263)
>
> [2012-07-30 12:39:21 - ddms] null
> java.lang.NullPointerException
>  at com.android.ddmlib.Client.sendAndConsume(Client.java:573)
> at com.android.ddmlib.HandleHello.sendHELO(HandleHello.java:142)
>  at com.android.ddmlib.HandleHello.sendHelloCommands(HandleHello.java:65)
> at com.android.ddmlib.Client.getJdwpPacket(Client.java:672)
>  at
> com.android.ddmlib.MonitorThread.processClientActivity(MonitorThread.java:317)
> at com.android.ddmlib.MonitorThread.run(MonitorThread.java:263)
>
> [2012-07-30 12:43:07 - ddms] null
> java.lang.NullPointerException
> at com.android.ddmlib.Client.sendAndConsume(Client.java:573)
>  at com.android.ddmlib.HandleHello.sendHELO(HandleHello.java:142)
> at com.android.ddmlib.HandleHello.sendHelloCommands(HandleHello.java:65)
>  at com.android.ddmlib.Client.getJdwpPacket(Client.java:672)
> at
> com.android.ddmlib.MonitorThread.processClientActivity(MonitorThread.java:317)
>  at com.android.ddmlib.MonitorThread.run(MonitorThread.java:263)
>
> [2012-07-30 12:43:07 - ddms] null
> java.lang.NullPointerException
>  at com.android.ddmlib.Client.sendAndConsume(Client.java:573)
> at com.android.ddmlib.HandleHello.sendHELO(HandleHello.java:142)
>  at com.android.ddmlib.HandleHello.sendHelloCommands(HandleHello.java:65)
> at com.android.ddmlib.Client.getJdwpPacket(Client.java:672)
>  at
> com.android.ddmlib.MonitorThread.processClientActivity(MonitorThread.java:317)
> at com.android.ddmlib.MonitorThread.run(MonitorThread.java:263)
>
>
>
> Thanks
> RK
>
> On Mon, Jul 30, 2012 at 12:29 PM, Jonathan S  wrote:
>
>> Look in logcat like red font
>>
>>
>> On Monday, July 30, 2012 2:53:45 AM UTC-4, rahul kaushik wrote:
>>>
>>> Hi,
>>>
>>> If my activity stay idle for Sometime, it shows (Activity is not
>>> responding and i ahve two option Force Close Wait)
>>> how i can avoid this
>>>
>>> Thanks
>>> RK
>>>
>>  --
>> 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 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
>



-- 
Regards
Fahad Mullaji

-- 
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

Re: [android-developers] Re: htc dream g1

2012-07-30 Thread fahad mullaji
Hi *Andre*,

Simple link from Cyanogen-mod Developers : cm.get/

You need to find out root and mod file for your device.They have given
their own names for each device on which they work.

*Thanks*
Fahad Mullaji.


On Mon, Jul 30, 2012 at 12:47 PM, Eric Wong (hdmp4.com) <
ericwon...@gmail.com> wrote:

> Read those threads on XDA and follow it.
>
> Btw, you can upgrade it to Android 2.3 but expect it to run very slowly...
>
>
> On Sunday, 29 July 2012 11:32:06 UTC+10, isarel wrote:
>>
>> how do i upgrade from 1.5 to 2.2 with my htc dream g1
>
>  --
> 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
>



-- 
Regards
Fahad Mullaji

-- 
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

Re: [android-developers] Re: htc dream g1

2012-07-30 Thread fahad mullaji
Sorry its get.cm/


On Mon, Jul 30, 2012 at 2:40 PM, fahad mullaji wrote:

> Hi *Andre*,
>
> Simple link from Cyanogen-mod Developers : cm.get/
>
> You need to find out root and mod file for your device.They have given
> their own names for each device on which they work.
>
> *Thanks*
> Fahad Mullaji.
>
>
>
> On Mon, Jul 30, 2012 at 12:47 PM, Eric Wong (hdmp4.com) <
> ericwon...@gmail.com> wrote:
>
>> Read those threads on XDA and follow it.
>>
>> Btw, you can upgrade it to Android 2.3 but expect it to run very slowly...
>>
>>
>> On Sunday, 29 July 2012 11:32:06 UTC+10, isarel wrote:
>>>
>>> how do i upgrade from 1.5 to 2.2 with my htc dream g1
>>
>>  --
>> 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
>>
>
>
>
> --
> Regards
> Fahad Mullaji
>
>
>


-- 
Regards
Fahad Mullaji

-- 
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

Re: [android-developers] Creating Tab Control in android

2012-07-30 Thread fahad mullaji
*Nirvan*,

Call function in which create new reference of tab-host. Try to position it
by assigning it properties.
Have not tried by myself but this should work according to me.
But again assigning layouts for different tabs will be bit tricky.You need
to dig this topic.
Good Luck

*Thanks*
Fahad Mullaji

On Mon, Jul 30, 2012 at 12:37 PM, |-NK-|  wrote:

> Hi
> I am developing an application in android, where I need to create a
> Tab control containing variable no of tabs.
>
> I need to know how to create tab control dynamically.
>
> I have seen some examples where they have used tabhost as root element
> in an xml layout file.
> I need to have some controls such as buttons and textviews on screen
> and below these controls I need a tab control.
>
> I am confused as I have seen different examples.
>
> Thanks.
>
> --
> 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
>



-- 
Regards
Fahad Mullaji

-- 
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

Re: [android-developers] Trying to send a message to second activity and then change the second activity textView text to that message

2012-07-31 Thread fahad mullaji
*marcelopalmadenoronha*,

Check below code and also check manifest settings whatever asheesh was
asking you to check

Intent i = new Intent(getApplicationContext(), NewActivity.class);
i.putExtra("new_variable_name","value");
startActivity(i);

Then in the new Activity, retrieve those values:

*Bundle extras = getIntent().getExtras();*
if (extras != null) {
String value = extras.getString("new_variable_name");
}


*Thanks*
Fahad Mullaji

On Tue, Jul 31, 2012 at 11:59 AM, Asheesh Arya wrote:

> have you declared your second activity in manifest file!! check it out!!
>
>  --
> 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
>



-- 
Regards
Fahad Mullaji

-- 
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

Re: [android-developers] New developer

2012-07-31 Thread fahad mullaji
*Oscar*,

You can download android APIs till version 16 that is Jelly Beans android
4.1.
Switch to these APIs and find out that you are getting any compile errors
or not.
If you are good there then create emulators for all the versions or APIs
that you want to check your code on.

*Thanks*
Fahad Mullaji

On Mon, Jul 30, 2012 at 12:23 PM, Oscar  wrote:

> I developed a native android aplication with Android 2.2 - Level 8, my
> question is: will it work well on android devices with versions 2.3 or
> superior or it will present crashes?
>
> --
> 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




-- 
Regards
Fahad Mullaji

-- 
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

Re: [android-developers] which default layout in new eclipse android app project

2012-07-31 Thread fahad mullaji
*Albrecht*,

In early days when i used to create android application it by default used
to create Linear Layout.
But in recent it drops Relative Layout.
You can any time change the layout no issues with that.

*Thanks*
Fahad Mullaji

On Sun, Jul 29, 2012 at 1:31 AM, Albrecht Frick  wrote:

> Hi Developers,
> I am new to this group, have just installed Eclipse(Helios), Java 6 upd
> 33, and the android sdk (on win7 64bit)
> When I create an new Android Application Project in Eclipse, the generated
> Layout is RelativeLayout and not LinearLayout.
> In all the code samples I read, the LinearLayout initially is created.
> Any Ideas?
> Thanx
> Albrecht
>
>  --
> 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




-- 
Regards
Fahad Mullaji

-- 
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] Media file converter (mp3 to aac)

2012-08-02 Thread fahad mullaji
Hi Guys,

I know this topic is not related to android.
But thought you guys could share if you know code/link to convert file
formats of media files.
Lets say i want to convert .mp3 file into .aac format through my app then
how do i do it? (third party APIs will work too)

Thanks in advance...

-- 
Regards
Fahad Mullaji

-- 
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

Re: [android-developers] Creating Tab Control in android

2012-08-02 Thread fahad mullaji
*Nirvan*,

This link might help you.
http://www.androidhive.info/2011/08/android-tab-layout-tutorial/

*Thanks*
Fahad Mullaji

On Tue, Jul 31, 2012 at 6:28 PM, |-NK-|  wrote:

>
> On Monday, July 30, 2012 2:52:43 PM UTC+5:30, fahad mullaji wrote:
>>
>> *Nirvan*,
>>
>> Call function in which create new reference of tab-host. Try to position
>> it by assigning it properties.
>> Have not tried by myself but this should work according to me.
>> But again assigning layouts for different tabs will be bit tricky.You
>> need to dig this topic.
>> Good Luck
>>
>> *Thanks*
>> Fahad Mullaji
>>
>> On Mon, Jul 30, 2012 at 12:37 PM, |-NK-| wrote:
>>
>>> Hi
>>> I am developing an application in android, where I need to create a
>>> Tab control containing variable no of tabs.
>>>
>>> I need to know how to create tab control dynamically.
>>>
>>> I have seen some examples where they have used tabhost as root element
>>> in an xml layout file.
>>> I need to have some controls such as buttons and textviews on screen
>>> and below these controls I need a tab control.
>>>
>>> I am confused as I have seen different examples.
>>>
>>> Thanks.
>>>
>>> --
>>> 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<http://groups.google.com/group/android-developers?hl=en>
>>>
>>
>>
>>
>> --
>> Regards
>> Fahad Mullaji
>>
>> HI,
>
> I was able to create Tab control dynamically. However I dont know how to
> create it through xml file.
>
> Thanks,
>
>
> --
> 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
>



-- 
Regards
Fahad Mullaji

-- 
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

Re: [android-developers] AN ANDROID APPLICATION TO CONVERT HANDWRITTEN SHORTHANDS TO PRINTED DOCUMENT

2012-08-02 Thread fahad mullaji
*NIJO*,

You need to explore GestureOverlayView android control Or you can make your
custom control which could detect your language.Check below link
http://www.vogella.com/articles/AndroidGestures/article.html

*Thanks*
Fahad Mullaji


On Wed, Aug 1, 2012 at 10:39 AM, NIJO  wrote:

> Hi Friends,
>
> I'm planning to develop an android application to convert handwritten
> shorthands to document(PDF), Somebody please guide me on this project, as
> i'm a beginner in android development.
> I have attached the documents and requirement specification of the project
> , kindly help me out on this project..
>
> Regards
>
> NIJO GEORGE P
>
>  --
> 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




-- 
Regards
Fahad Mullaji

-- 
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

Re: [android-developers] Failed to allocate memory: 8 even with 512 MB of RAM

2012-08-02 Thread fahad mullaji
*Marti*,

How are you running your app?
Click on AVD icon,you will see list of emulators that you have created.
Select emulator which is configured with API 16.
Once the emulator is fully started.Right click on package explorer.
Select Run as -> Android Application.Select the emulator if it is asking.
This is how i run my apps.Directly running apps was creating problems for
me.

*Thanks*
Fahad Mullaji

On Tue, Jul 3, 2012 at 4:41 PM, Martí Bosch wrote:

> Hi,
> I'm just learning to use Eclipse, and when I try the simple "Hello World"
> App, I see I can't run my app, even the AVD I created has a RAM size of 512
> MB.
> What can I do?
> I'm using the last API level (16)
> thanks!
>
> --
> 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




-- 
Regards
Fahad Mullaji

-- 
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

Re: [android-developers] Need to Help android phonegap

2012-08-02 Thread fahad mullaji
*Chumki*,

http://www.vogella.com/articles/AndroidSensor/article.html

Check this code might help you.Instead of doing actions on compass you
switch off and on your phone light.

*Thanks*
Fahad Mullaji

On Thu, Aug 2, 2012 at 2:46 PM, chumki ghosh wrote:

> Hello All,
>
> I want to make a sample application on phone-gap android.I want to use
> accelerometer. Now i able to get values of X,Y,Z axis. But i want to
> implement like light sensor on it.Like when user recieve any call and bring
> the device front of ear den light gone ON and when device lies flat  then
> light gone OFF.
>  It means when when device lies flat x axis value is positive. Can anyone
> please help me how to implement light sensor on it.
>
> Thanks in Advance!!1
>
> --
> 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




-- 
Regards
Fahad Mullaji

-- 
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

Re: [android-developers] want a app

2012-08-03 Thread fahad mullaji
*Prince*,

This group is for discussing issues faced while writing android programs.
If you want such apps you can always check in github,googlecode,codeproject
kind of websites.
Hope you find your app

*Thanks*
Fahad Mullaji

On Wed, Aug 1, 2012 at 12:18 PM, Prince Mehta wrote:

> i just want a app which allow user to loack a file(like
> pictures,mp3,video,etc) in such a way that no one, except user, can delete
> it or share it from bluetooth or from other way.
>
> --
> 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




-- 
Regards
Fahad Mullaji

-- 
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

Re: [android-developers] SMS Header

2012-08-03 Thread fahad mullaji
*Sebastian*,

I guess you don't want receiver to know that who has the SMS correct?
It will be bit difficult to do.As we use SmsManager class to send message
from android code.
You can download android package source code and get SmsManager.java file
that is source code for it.
See if you could make changes in it and achieve this.

Source code looks like this
http://grepcode.com/file/repository.grepcode.com/java/ext/com.google.android/android/1.6_r2/android/telephony/SmsManager.java

*Thanks*
Fahad Mullaji

On Thu, Aug 2, 2012 at 5:56 AM, Basti189  wrote:

> Hello,
>
> I want to program an App which can send SMS with the special function. I
> want to modify the header that the receiver of the sms don't see my phone
> number but a number that you define in the App.
> My english is very bad, but I hope you can understand this.
>
> Yours
>
> Sebastian
>
> --
> 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




-- 
Regards
Fahad Mullaji

-- 
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

Re: [android-developers] want a app

2012-08-04 Thread fahad mullaji
"10x" "4" "d" Appreciation Asheesh...

On Fri, Aug 3, 2012 at 2:07 PM, Asheesh Arya wrote:

> 10x 4 d precious information
>
>  --
> 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
>



-- 
Regards
Fahad Mullaji

-- 
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

Re: [android-developers] Re: AVD is no launching in Ubuntu ICS

2012-08-16 Thread fahad mullaji
First start AVD then run application on it

Thanks
Fahad Mullaji

On Thu, Aug 16, 2012 at 4:02 PM, Rocky  wrote:

>
> when i'm running project, console saying that "emulator 5554 is launching
> .. but it is not launching at all.
>
>
>
> On Wed, Aug 15, 2012 at 12:29 AM, coc_21  wrote:
>
>> What exactly is happening?
>>
>>
>> On Tuesday, August 14, 2012 2:54:19 AM UTC-5, RKJ (Android developer)
>> wrote:
>>>
>>> Hi All,
>>>
>>> is it any issue with ICS with Ubuntu to start emulator ?
>>> Same is working over Windows XM but not working in Ubuntu 10.5 above.
>>>
>>> Please suggest me .
>>>
>>>
>>> --
>>> Thanks & Regards
>>>
>>> Rakesh Kumar Jha
>>>
>>  --
>> 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
>
>
>
>
> --
> Thanks & Regards
>
> Rakesh Kumar Jha
> Android Developer, Trainer and Mentor
> Bangalore
> Skype - rkjhaw
> (O) +918050753516
> (R) +919886336619
>
>  --
> 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
>



-- 
Regards
Fahad Mullaji

-- 
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] Sharing or Passing Array List between Activities

2012-09-09 Thread fahad mullaji
Hi All,

What is the best method to share array list object between android
activities?
Caching,Parcelable or something new?

-- 
Regards
Fahad Mullaji

-- 
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

Re: [android-developers] Sharing or Passing Array List between Activities

2012-09-09 Thread fahad mullaji
Thanks Kris,
I was planning to move data in parcelable objects.
Does it affect performance of application.
That's what i has what is the best way/method for passing array list

Thanks
Fahad Mullaji

On Sun, Sep 9, 2012 at 7:33 PM, Kristopher Micinski
wrote:

> I thought this answer had been answered before?
>
>   -- If it's smallish you can pass it in the intent to another activity
>   -- if it's larger you can think about backing it in a content
> provider within the app to keep things persistent
>
> kris
>
> On Sun, Sep 9, 2012 at 9:33 AM, fahad mullaji 
> wrote:
> > Hi All,
> >
> > What is the best method to share array list object between android
> > activities?
> > Caching,Parcelable or something new?
> >
> > --
> > Regards
> > Fahad Mullaji
> >
> >
> > --
> > 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 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
>



-- 
Regards
Fahad Mullaji

-- 
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

Re: [android-developers] Re: WIN DEATH Logs

2012-09-16 Thread fahad mullaji
Sateesh,

Did you check this?

http://stackoverflow.com/questions/4253267/android-window-death-and-application-crash

Thanks
Fahad Mullaji


On Mon, Sep 17, 2012 at 10:46 AM, Sat  wrote:

> Guys please reply ...
>
>
> On Saturday, September 15, 2012 4:28:17 PM UTC+5:30, Sat wrote:
>>
>> Hi All,
>>
>> I am getting WIN DEATH: Window log with pause = false.
>> This is not frequent but after this log the service which this activity
>> uses is facing an ANR.
>>
>> Please tell me why this WIN DEATH: Window log comes. So that I can debug
>> more.
>>
>> I tried to search in net but could not find anything much.
>>
>> thanks,
>> satish
>>
>  --
> 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
>



-- 
Regards
Fahad Mullaji

-- 
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] Custom pop up option menu on button click

2012-09-18 Thread fahad mullaji
Guys,

I want to show pop menu on a button click like we have it on long press
event on list
It is called context menu.
Cane we get it on a button click?

-- 
Regards
Fahad Mullaji

-- 
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

Re: [android-developers] Custom pop up option menu on button click

2012-09-19 Thread fahad mullaji
Thanks Jovish solved my problem.

On Wed, Sep 19, 2012 at 1:41 AM, Jovish P  wrote:

> Check out this link
>
>
> http://www.stealthcopter.com/blog/2010/04/android-context-menu-example-on-long-press-gridview/
>
>
> Regards,
> Jovish
>
> On Tue, Sep 18, 2012 at 8:09 PM, fahad mullaji wrote:
>
>>
>> Guys,
>>
>> I want to show pop menu on a button click like we have it on long press
>> event on list
>> It is called context menu.
>> Cane we get it on a button click?
>>
>>
>> --
>> Regards
>> Fahad Mullaji
>>
>>
>>  --
>> 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 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




-- 
Regards
Fahad Mullaji

-- 
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] Android Bluetooth Features

2012-12-04 Thread fahad mullaji
Hi,

Can we explore other device's content once we pair device with our device
using Android Bluetooth package?

And get files from other device?

Thanks and Regards
Fahad Mullaji

-- 
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

Re: [android-developers] TelephonyManager.getPhoneType is returning PHONE_TYPE_NONE on Nexus 7 3G.

2012-12-04 Thread fahad mullaji
Nexus 7 is not GSM device ... may be because of that...


On Tue, Dec 4, 2012 at 6:35 PM, sebouh00  wrote:

> When I run my application on Nexus 7 3G, the TelephonyManager.getPhoneType
> is returning PHONE_TYPE_NONE. Is there a reason for this?
>
> Thanks,
> Sebouh.
>
> --
> 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




-- 
Regards
Fahad Mullaji

-- 
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