Re: [android-developers] parsing responce of a web url

2013-11-06 Thread Krishna Prasad
did u encode ur url while sending request? On Thu, Nov 7, 2013 at 7:57 AM, shiva pendem wrote: > Hi mukesh. > My applicatoin is parsing the string but i am unable to get the text shown > in the web browser. > When ever i hit the url in any browser it shows a string as output. So i > need a help

Re: [android-developers] Re: error message displays on gingerbread emulator but not icecream sandwich emulator

2013-04-19 Thread Krishna Prasad
For google map v2 to run ,it needs a shared library(google play services).usually emulator didnt have this by default. I think ,this error is due to that. On Thu, Apr 18, 2013 at 1:18 AM, John Merlino wrote: > Take a look at my newer thread: > > https://groups.google.com/group/android-develope

Re: [android-developers] MediaPlayer does not play ringtone when activity started from locked screen.

2013-04-19 Thread Krishna Prasad
Did you set Wake Lock Permission in manifest? On Thu, Apr 18, 2013 at 5:30 AM, Inn0vative1 wrote: > I am writing an alarm (kinda) app, which registers a broadcast intent with > AlarmManager with the RTC_WAKEUP flag, to go off at a specified time. > Works... > > When the broadcast is received, t

[android-developers] Re: Google Map Android Api V2 not working

2013-01-29 Thread Krishna Prasad
check whether google map is installed in phone On Monday, January 21, 2013 10:05:10 PM UTC-8, Haps wrote: > > Hi Guys, > > I am trying to use the latest api launched by google i.e. *Google Map > Android Api V2* > All the code and each scenario is correct, but I am still having the blank > fragme

[android-developers] Image Transforamtion in Android

2012-07-10 Thread Krishna Prasad
Is there any java lib to transform images by pulling the edges of images. In flex, check Ref link : http://www.sephiroth.it/weblog/archives/2007/07/transformtool_modification.php -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post

[android-developers] Setting duration in Frame Animation

2011-09-26 Thread Krishna Prasad
I just create a frame animation in android but i dont know how to set the duration. my requirement is it should animate for a particular time and after that go to next activity using intent.Is it possible in frame animation to set duration.can anybody help me -- You received this message because

Re: [android-developers] Getting null value while retrieving _id value from database

2011-09-21 Thread Krishna Prasad
im using "_id" as auto increment .SO is that a problem? On Thu, Sep 22, 2011 at 1:49 AM, Krishna Prasad < krishnaprasadrs.1...@gmail.com> wrote: > Hi all, > > Iam getting null value from colum_id while im trying to save it in a > variable.But the thing is,im

[android-developers] Getting null value while retrieving _id value from database

2011-09-21 Thread Krishna Prasad
Hi all, Iam getting null value from colum_id while im trying to save it in a variable.But the thing is,im getting other column's value correctly. here is the sample database code public Cursor getWebFields(String FormId) { SQLiteDatabase db = this.getReadableDatabase();

Re: [android-developers] Get Auto Increment values from table 1 and insert in Table2

2011-09-21 Thread Krishna Prasad
ok thanks... On Wed, Sep 21, 2011 at 8:35 AM, Daniel Drozdzewski < daniel.drozdzew...@gmail.com> wrote: > On 21 September 2011 12:02, Krishna Prasad > wrote: > > No . > > > > My requirement is > > > > While Xml parsing,i need to save each valu

Re: [android-developers] Get Auto Increment values from table 1 and insert in Table2

2011-09-21 Thread Krishna Prasad
No . My requirement is While Xml parsing,i need to save each value to db.During saving each table is related.Suppose i have a table which has field "id","form name" in one table.I need to save the that "id" value in another table also.Since it is parsing,i want to save it simultaneously.Can yo

Re: [android-developers] Get Auto Increment values from table 1 and insert in Table2

2011-09-21 Thread Krishna Prasad
I want to get the auto increment primary key as soon as it is inserted and insert that auto increment value as a foreign key in another table. On Wed, Sep 21, 2011 at 6:30 AM, Ratheesh Valamchuzhy wrote: > Go through the tutorial of sqlite database > > http://www.vogella.de/articles/AndroidSQLit

[android-developers] Get Auto Increment values from table 1 and insert in Table2

2011-09-21 Thread Krishna Prasad
Hi all, Can anybody help me in inserting an auto increment value (primary key) in one table as a foreign key in table 2 simultaneously. thanks -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to androi

Re: [android-developers] Get Data from Database of selected Item

2011-09-19 Thread Krishna Prasad
= (Cursor) parent.getItemAtPosition(position);) > > what is the issue ? > file attached. > > On Mon, Sep 19, 2011 at 11:42 AM, Krishna Prasad < > krishnaprasadrs.1...@gmail.com> wrote: > >> did u get your values from db correctly? >> >> >> On Mon

[android-developers] How to set android:fillViewport="true" for scrool view programatically?

2011-09-19 Thread Krishna Prasad
Hi all, I had a problem in my linear layout which is inside a scroll view .The background image is not showing in full screen. My sample code is ScrollView sv = new ScrollView(this); sv.setLayoutParams(new LayoutParams(LayoutParams.FILL_PARENT,

Re: [android-developers] Get Data from Database of selected Item

2011-09-18 Thread Krishna Prasad
t.getAdapter(); > > On 9/19/11, Bishan wrote: > > thanx Krishna. i'll check this. > > > > On 9/19/11, Krishna Prasad wrote: > >> final int id = cursor.getint(idColIndex ); > >> > >> just check the value using logcat whether

Re: [android-developers] Re: How to create custom softkeyboard ??

2011-09-18 Thread Krishna Prasad
Thanks .. On Mon, Sep 19, 2011 at 10:56 AM, Zsolt Vasvari wrote: > Yes, the SDK documentation. > > On Sep 19, 11:44 am, Krishna Prasad > wrote: > > I need a custom Soft keyboard for my application .For that can anybody > > guide me,where to start? > > -- > You

Re: [android-developers] Get Data from Database of selected Item

2011-09-18 Thread Krishna Prasad
final int id = cursor.getint(idColIndex ); just check the value using logcat whether it is getting or not On Mon, Sep 19, 2011 at 10:57 AM, Krishna Prasad < krishnaprasadrs.1...@gmail.com> wrote: > id means the String variable where u save the cursor.colum value. > > > On Mo

Re: [android-developers] Get Data from Database of selected Item

2011-09-18 Thread Krishna Prasad
id means the String variable where u save the cursor.colum value. On Mon, Sep 19, 2011 at 10:53 AM, Bishan wrote: > bundle.putString("any name",Id); > > what is the " Id " in above code ? > > On 9/19/11, Krishna Prasad wrote: > > welcome.. > &g

Re: [android-developers] Get Data from Database of selected Item

2011-09-18 Thread Krishna Prasad
welcome.. On Mon, Sep 19, 2011 at 10:33 AM, Bishan wrote: > thanx Krishna :) > > On 9/19/11, Krishna Prasad wrote: > > @Override > > public void onItemClick(AdapterView parent, View arg1, int > i, > > lon

Re: [android-developers] Get Data from Database of selected Item

2011-09-18 Thread Krishna Prasad
i think ,you got it.. On Mon, Sep 19, 2011 at 10:32 AM, Krishna Prasad < krishnaprasadrs.1...@gmail.com> wrote: > > @Override > public void onItemClick(AdapterView parent, View arg1, int > i, > long l) {

Re: [android-developers] Get Data from Database of selected Item

2011-09-18 Thread Krishna Prasad
@Override public void onItemClick(AdapterView parent, View arg1, int i, long l) { try { SimpleCursorAdapter simpleCursorAdapter = (SimpleCursorAdapter) parent .getAdapter();

[android-developers] How to create custom softkeyboard ??

2011-09-18 Thread Krishna Prasad
I need a custom Soft keyboard for my application .For that can anybody guide me,where to start? -- 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 thi

[android-developers] XML parsing in android

2011-09-04 Thread Krishna Prasad
Is It possible to parse a dynamically created xml in android? I want to display the xml based on fields in the xml. -- 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 T