[android-developers] Andoid Deep linking exclude certain URLs

2017-01-01 Thread aayush . cmunafa
I have implemented deep linking to my app successfully but I am stuck with a problem. This intent filter handles all the links but I don't want to catch a certain url i.e. https://www.example.com/hello/redirect/ *What I tried so far:* I tried entering all the urls th

[android-developers] Many Listviews problem

2009-08-16 Thread Aayush
Hi, I want to show many listviews in one activity. Something like Textview Listview TextView Listview .. Every listview has different type of adapter. For this, I made the activity class like:- public class ListTestActivity extends ListActivity { public void onCreate(Bundle savedInsta

[android-developers] Image display from a URL

2009-06-18 Thread Aayush
Hi, I need to display the image in ImageView from a web url. I have tried different ways using setImageDrawable() method. Could somebody present a simple example to accomplish this? Thanks, Aayush --~--~-~--~~~---~--~~ You received this message because you are

[android-developers] Image display from a url

2009-06-18 Thread Aayush
HI, I want to display an image from a url, for this I defined the ImageView first as, then in the activity, super.onCreate(savedInstanceState); setContentView(R.layout.main); ImageView imgV = (ImageView)findViewById(R.id.imagename); Now how should I supply the url of the image from where it

[android-developers] Re: a receiver for outgoing sms and email?

2009-06-12 Thread aayush
i think is not right and I dont know what the implications might be. Hence the SMS client route seems legal and hassle free to me. On Jun 12, 5:33 pm, aayush bhatnagar wrote: > Outgoing calls cannot be equated with this. > 1. Dial codes (also known as feature codes in telecom) usually pre

[android-developers] Re: a receiver for outgoing sms and email?

2009-06-12 Thread aayush bhatnagar
let the > users use what ever sms client they want and not have to reinvent the > wheel just to catch outgoing sms. > > There are many more cases on why this would be useful but that is my > particular case. > > Chris > > > On Jun 12, 4:35 pm, aayush wr

[android-developers] Re: a receiver for outgoing sms and email?

2009-06-11 Thread aayush
Interesting feature request. What is the use case for such a requirement? I am asking for my understanding. Why do you need to be notified when the sms or email is sent out? On Jun 12, 5:18 am, Seer wrote: > Guys there is a issue raised for this now.  Please add your votes to > it so that hopefu

[android-developers] Re: Rendering of Android User Interface on different devices.

2009-06-08 Thread aayush bhatnagar
Interesting. Thanks for sharing the link.. On 6/8/09, mathiastck wrote: > > They put up video and slides from the google IO session on this topic: > > http://code.google.com/events/io/sessions/SupportingMultipleDevicesBinary.html > > On Jun 6, 7:55 am, aayush wrote: >&

[android-developers] Rendering of Android User Interface on different devices.

2009-06-06 Thread aayush
well on all devices ? Or will the framework take care of it itself and the developer will be insulated from such issues ? Thanks in advance aayush --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Devel

[android-developers] Re: Does Android support API to find out whether the SIM Card inserted is SIM or USIM ?

2009-06-06 Thread aayush
I also had posted a similar query...got an answer too..and the solution. Ref this thread: http://groups.google.com/group/android-developers/browse_thread/thread/26e53fe952b612ab/846a1cb383cf59cd#846a1cb383cf59cd On Jun 5, 10:40 pm, Android Techies wrote: > Hello, > Is there a way in Android FW

[android-developers] Re: A question on Intents.

2009-06-04 Thread aayush bhatnagar
, registration etc. However, my sip stack needs to be kept alive for as long as my application is alive. Should i still mould the sip stack as a service then? Or are there better ways to do it ? Thanks for all the help. really appreciated aayush On 6/4/09, Mark Murphy wrote: > >> Just a note on Serv

[android-developers] Re: A question on Intents.

2009-06-04 Thread aayush
idle, the service ends gracefully. Thanks for the help. aayush On Jun 4, 1:26 pm, adamphillips12 wrote: > I'm not quite sure what you're asking but it seems you are not in full > understanding of Intents. > > The "action" field is just a string value used with B

[android-developers] Re: A question on Intents.

2009-06-04 Thread aayush
. So, if i need to start a service CallControlService, what would my intent look like ? On Jun 4, 1:02 pm, aayush wrote: > Hello, > > I had some conceptual doubts about Intents. Let me explain it with > respect to one of my upcoming applications: > > The application will be

[android-developers] A question on Intents.

2009-06-04 Thread aayush
a URI. So will the class name of the target service be specified as a URI ? Secondly, class name here implies the entire package namespace of the class (org.test) ? Thanks in advance aayush --~--~-~--~~~---~--~~ You received this message because you are

[android-developers] Re: Licensing an Android application programatically.

2009-06-03 Thread aayush
Excellent Al. Looks great. > -Original Message- > From: android-developers@googlegroups.com > [mailto:android-develop...@googlegroups.com] On Behalf Of aayush > Sent: 03 June 2009 14:05 > To: Android Developers > Subject: [android-developers] Re: Licensing an A

[android-developers] Re: Licensing an Android application programatically.

2009-06-03 Thread aayush
3, 12:41 pm, Sujay Krishna Suresh wrote: > btw aayush... if u r plannin to implement this can u plz temme how u r > checkin the validity of a key?? > 'm very bad with cryptography... > > > > > > On Wed, Jun 3, 2009 at 6:04 PM, aayush wrote: > > > Yes...

[android-developers] Re: Licensing an Android application programatically.

2009-06-03 Thread aayush
mance... > >>> > > but i dont exactly no if an android phone has any sort of unique > >>> id & > >>> > > the possibilities to get such an id... > >>> > > if not the id u may go for the google acc registered with t

[android-developers] Re: Licensing an Android application programatically.

2009-06-03 Thread aayush
impair the performance of my app? if i remember correctly, i think the android app certificate needs to be assigned a validity date..and it can be password protected. Maybe it can be utilized for my needs? aayush On Jun 3, 10:09 am, mobilekid wrote: > I would do the same. > > Get the a

[android-developers] Re: Licensing an Android application programatically.

2009-06-03 Thread aayush
okay..thanks for the answer Marc. For #1 i believe i need to create my own certificate by using the keytool utility and sign it as you suggest. Time based is my only requirement..as of now. Usage based is not a priority for me. aayush On Jun 3, 2:34 pm, Marc Lester Tan wrote: > Hi, >

[android-developers] Licensing an Android application programatically.

2009-06-03 Thread aayush
invocations of the application). Once the application's license expires, i need to restrict access to it from the user. Thanks in advance.. Best Regards aayush --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google G

[android-developers] Re: Testing among peers - A new group proposed

2009-05-30 Thread aayush
Nice initiative Ravi. Go for it.. On May 31, 1:45 am, "Eric Wong (hdmp4.com)" wrote: > I am in if this idea goes anywhere :) > > It is probably better for you to recruit power (geek) users to do the > testing and free up developer time to actually work on the apks. > > Note: I am a power user,

[android-developers] Re: Starting services on Android Boot

2009-05-28 Thread aayush bhatnagar
to stay alive for the entire duration the device is up and running. >From your explanation above, it seems that AlarmManager will do the job for me too. thanks aayush On 5/29/09, Mark Murphy wrote: > >> If I create a no-gui application that extends and android.app.Service >> c

[android-developers] Re: Accessing java SIM card information from android

2009-05-28 Thread aayush
Thanks. Perfect. TelephonyManager is just what i was looking for. regards aayush On May 27, 3:50 am, Mingli Wang wrote: > you can get some simple messages of the sim  by TelephonyManager, but if you > want to get more , i think you have to use the "at" command >

[android-developers] Re: Discussion/Suggestions regarding SIP/RTP support on android.

2009-05-27 Thread aayush
Kindly ignore questions 1 and 2. I found the answers in the developer guide. aayush wrote: > Hello, > i have some questions. > > 1. Is there native RTP support on android? > 2. Is there a media player for playing incoming rtp streams, or for > that matter streaming rtp au

[android-developers] Discussion/Suggestions regarding SIP/RTP support on android.

2009-05-27 Thread aayush
application bootstrapping? 5. Is it possible for an android application to register for callbacks, in case the mobile device goes out of radio coverage? your help and answers are appreciated. Thanks aayush --~--~-~--~~~---~--~~ You received this message because you

[android-developers] Re: Accessing java SIM card information from android

2009-05-27 Thread aayush
Hello, Another query is, that how do i find the exact technology in use of the handset? Whether it is GSM, HSPA or even LTE for that matter. thanks aayush On May 27, 3:43 am, aayush wrote: > Hello, > My query is regarding access to USIM card information from an android > applic

[android-developers] Accessing java SIM card information from android

2009-05-26 Thread aayush
it is limited to only sms and geolocation information.. http://developer.android.com/reference/android/telephony/gsm/package-summary.html i wish to read the MSISDN, and a shared secret key stored on the sim. thanks in advance aayush. --~--~-~--~~~---~--~~ You

[android-developers] Re: RPC Best Practices

2009-05-26 Thread aayush bhatnagar
ol over both ends >> of the communications. >> >> -- >> Mark Murphy (a Commons >> Guy)http://commonsware.com|http://twitter.com/commonsguy >> >> Need Android talent? Ask on HADO!http://wiki.andmob.org/hado > > > -- aayush ---