[android-developers] HOTLIST

2016-12-28 Thread Manish Saibersys
San Francisco, CA Open Chakravarthy *QA* *H1B* *7+* Immediately Denver, CO Open Chetan *QA* *H1B* *8+* Immediately Sioux Falls, South Dakota Open Thanks & Regards, Manish Reddy, US IT Recruiter 860 Hebron Pkwy,Suite# 604, Lewisville, TX 75057 Email : man...@amensys

[android-developers]

2016-12-22 Thread Manish Saibersys
+* Immediately San Francisco, CA Open Chakravarthy *QA* *H1B* *7+* Immediately Denver, CO Open Chetan *QA* *H1B* *8+* Immediately Sioux Falls, South Dakota Open Thanks & Regards, Manish Reddy US IT Recruiter 860 Hebron Pkwy, Suite# 604, Lewisville, TX 75057 Email :

[android-developers] Deeplinking Testing through Espresso UI testing

2016-09-20 Thread Manish Mittal
Hi All, I am looking for a way to implement Deeplinking Testing using Espresso UI Testing. Could anyone please help in providing some insight? Regards Manish -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To unsubs

[android-developers] Execution Failed for Task in Android Studio.

2016-08-31 Thread manish kumar
how I can Resolve this Error,---Error:Execution failed for task ':app:processDebugResources'. > com.android.ide.common.process.ProcessException: org.gradle.process.internal.ExecException: Process 'command 'C:\Users\MANISH\AppData\Local\Android\Sdk\build-tools\23.0.3\aapt.exe'' finis

[android-developers] Re: Why does our design look so bad on different resolutions? Urgent help needed

2016-04-25 Thread Manish Butola
Take a full image of 720*1280px and then start slicing on that image and put all the asset you get after slicing into drawable-xhdpi folder no need to put any image in any drawable folder On Saturday, 23 April 2016 12:49:22 UTC+5:30, Patrik Hansen wrote: > > Hello > > We're having some

[android-developers] Re: Want to become an android developer with little knowledge of programming

2016-04-25 Thread Manish Butola
http://developer.android.com/sdk/index.html On Monday, 25 April 2016 00:28:28 UTC+5:30, Sambhav Jain wrote: > > I have* Windows XP 32 BIT with CPU having Pentium Dual Core Processor, 2 > GB of RAM *and basic requirements. > Can someone pls post a link, so that I can download the Android SDK

[android-developers] Want to add intent activity with tab host which is in main activity

2016-04-15 Thread Manish Gupta
This is my main activity and here i am calling the layout in tabhost which is working fine but here i want to call an activity which is Search.java public class MainActivity extends AppCompatActivity implements NavigationView.OnNavigationItemSelectedListener { TabHost tabHost;

[android-developers] LinearLayout with weight doesn't work inside a listview

2014-12-04 Thread Manish
I am trying to build a custom view for the ListView rows. Below is what my row looks like Img | Text 1 |Text | Text 2 Below is my layout that I am using to generate row view RelativeLayout

Re: [android-developers] Install Subclipse in ADTBundle

2013-05-28 Thread Manish Srivas
an email to android-developers+unsubscr...@googlegroups.com. For more options, visit https://groups.google.com/groups/opt_out. -- Thanks Regards, -- Manish Shrivas ADI Soft Tech (P) Ltd. 54, Anand Nagar, Near Devi Ahilya Hospital, Chitawad Road , INDORE Mob

Re: [android-developers]

2013-05-06 Thread Manish Srivas
(String provider, int status, Bundle extras) { // TODO Auto-generated method stub } } -- Thanks Regards, -- Manish Shrivas ADI Soft Tech (P) Ltd. 54, Anand Nagar, Near Devi Ahilya Hospital, Chitawad Road , INDORE Mob no. 9907631333

[android-developers] program crashes when i try to create a table for my app

2013-04-29 Thread Manish Jain
here is the code of my database java file package com.example.docterapp; import java.util.ArrayList; import java.util.List; import android.content.ContentValues; import android.content.Context; import android.database.Cursor; import android.database.sqlite.SQLiteDatabase; import

Re: [android-developers]

2013-04-25 Thread Manish Srivas
the reason !! 2013/4/24 asma rezgui asmare...@gmail.com thanks Manish Shrivas 2013/4/24 Manish Srivas manish...@adisoftin.com http://myjeeva.com/how-to-**convert-image-to-string-and-** string-to-image-in-java.htmlhttp://myjeeva.com/how-to-convert-image-to-string-and-string-to-image

Re: [android-developers] Re: How to connect HTC One V to eclipse Windows 7

2013-04-24 Thread Manish Srivas
-developers+unsubscr...@googlegroups.com. For more options, visit https://groups.google.com/groups/opt_out. -- Thanks Regards, -- Manish Shrivas ADI Soft Tech (P) Ltd. 54, Anand Nagar, Near Devi Ahilya Hospital, Chitawad Road , INDORE Mob no. 9907631333

Re: [android-developers]

2013-04-24 Thread Manish Srivas
an email to android-developers+unsubscr...@googlegroups.com. For more options, visit https://groups.google.com/groups/opt_out. -- Thanks Regards, -- Manish Shrivas ADI Soft Tech (P) Ltd. 54, Anand Nagar, Near Devi Ahilya Hospital, Chitawad Road , INDORE Mob

Re: [android-developers] Send Email in Android

2013-04-23 Thread Manish Srivas
to android-developers+unsubscr...@googlegroups.com. For more options, visit https://groups.google.com/groups/opt_out. -- Thanks Regards, -- Manish Shrivas ADI Soft Tech (P) Ltd. 54, Anand Nagar, Near Devi Ahilya Hospital, Chitawad Road , INDORE Mob no. 9907631333

Re: [android-developers] Re: getExternalFilesDir(null)

2013-03-03 Thread Manish Srivas
Environment.getExternalStorageDirectory() it gives you sdcard access -- -- 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

Re: [android-developers] How to enable and disable mobile network programmatically ?

2013-03-02 Thread Manish Srivas
Method dataMtd = ConnectivityManager.class.getDeclaredMethod(setMobileDataEnabled, boolean.class); dataMtd.setAccessible(true); dataMtd.invoke(connectivityManager, true); -- -- You received this message because you are subscribed to the Google

Re: [android-developers] How to enable and disable mobile network programmatically ?

2013-03-02 Thread Manish Srivas
Method dataMtd = ConnectivityManager.class.getDeclaredMethod(setMobileDataEnabled, boolean.class); dataMtd.setAccessible(false); dataMtd.invoke(connectivityManager, false); -- -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this

[android-developers] Re: Changing Radio stations through headphones

2013-03-02 Thread manish pathak
Yes ansh , you can do it by easily by java code... following link will help you http://stackoverflow.com/questions/6287116/android-registering-a-headset-button-click-with-broadcastreceiver Thanks Regards Manish Pathak Mobile Technology Innovator -- -- You received this message because you

[android-developers] Re: How to schedule a daily popup dialog box even when the app may not be running...?

2013-03-02 Thread manish pathak
By Using the AlarmManager class with pending intent will resolve your problem. try it. Thanks Regards Manish Pathak Mobile Technology Innovator On Thursday, 28 February 2013 05:12:02 UTC+5:30, b1 wrote: How can I schedule a daily popup dialog box (that appears to remind the user to do

Re: [android-developers] Write to another application's internal memory

2012-11-27 Thread Srivas, Manish
Please add permission: uses-permission android:name=android.permission.GET_TASKS/ On Tue, Nov 27, 2012 at 1:26 PM, Android Test aandroidt...@gmail.comwrote: Hi All, I have 2 applications with different package names. E.g. App1 and App2. App1 needs to write some files to App2's internal

Re: [android-developers] Re: Flv to mp4 Convertion

2012-11-13 Thread Srivas, Manish
See ffmpeg.org On Nov 13, 2012 3:23 PM, May Swan zmc...@gmail.com wrote: Here is a guide about how to convert FLV to MP4http://www.kvisoft.com/tutorials/how-to-convert-flv-to-mp4-for-pocket-players.html. I believe it helps. -- You received this message because you are subscribed to the

Re: [android-developers] Re: jpg to video

2012-11-09 Thread Srivas, Manish
in ffmpeg wrapper change String[] ffmpegCommand = {ffmpegBin, -r, 25, -qscale, 2, -i,/sdcard/slideshow365/Temp/%d.jpeg, /sdcard/slideshow365/test4.mp4} On Fri, Nov 9, 2012 at 1:59 PM, shiva pendem pendem.shiv...@gmail.comwrote: Hi, i have tried the same source but this is not

Re: [android-developers] Re: jpg to video

2012-11-08 Thread Srivas, Manish
Use ffmpeg lib On Nov 8, 2012 3:20 PM, Eivind Aanestad eivind.aanes...@gmail.com wrote: Did you find the answer? I am having the same problem and I'm stuck because I can't find a solution to this. kl. 21:23:54 UTC+1 søndag 26. februar 2012 skrev hispasat følgende: Hi, I'm making an

Re: [android-developers] Re: jpg to video

2012-11-08 Thread Srivas, Manish
https://github.com/guardianproject/*SSCVideoProto* On Fri, Nov 9, 2012 at 11:08 AM, shiva pendem pendem.shiv...@gmail.comwrote: Hi, If you are able to use ffmpeg, can any one please send me the sample code to use the FFMPEG in android, I am unable to find the exact solution or the code

Re: [android-developers] Re: jpg to video

2012-11-08 Thread Srivas, Manish
UTC-6, bob wrote: You use something like this: ffmpeg -r 10 -b 1800 -i %03d.jpg test1800.mp4 On Thursday, November 8, 2012 10:11:21 AM UTC-6, Manish wrote: Use ffmpeg lib On Nov 8, 2012 3:20 PM, Eivind Aanestad eivind@gmail.com wrote: Did you find the answer? I am having the same

[android-developers] Load Testing The Push Service - GCM/C2DM

2012-07-31 Thread Manish Jalan
for apps in banking or financial domain where they have very high number of users. How do they test their notification modules for its performance and throughput? Any inputs and guidance will be highly appreciated. Best Regards, -Manish Jalan -- You received this message because you

[android-developers] how to mount sd card android phone and pc simultaneously

2012-07-11 Thread MR MANISH
-- 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

[android-developers] how to mount sd card android phone and pc simultaneously

2012-07-11 Thread MR MANISH
how to mount sd card android phone and pc simultaneously -- 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] how to mount sd card android phone and pc simultaneously

2012-07-11 Thread MR MANISH
how to mount sd card android phone and pc simultaneously -- 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] NFC SWP HCI test pattern

2012-04-22 Thread manish paul
Hi All, Iam looking for NFC SWP HCI testpattern for TS HCI 102 622, basically i want to know for all the testcase mentioned in the specification what should be the payload for S1 and S2? i googled a lot on this but i was not successful. --Paul -- You received this message because you are

[android-developers] Re: Display Rotated/vertical Text in a webview

2012-04-03 Thread Manish Dubey
I also want to know how to display rotated text like that of ticker in Facebook, in android? -- 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

[android-developers] Is there any functionality like 'Ticker of Facebook' in Android which keeps on revolving?

2012-03-25 Thread Manish Dubey
I am doing my final year project named- eNotice Board which will be an android app and flashed on a LCD attached to Android device. So I want the notices to rotate in a manner like that of ticker in Facebook. Also if not ticker then can I show the notices swapping with time, like 5 notices for 15

[android-developers] Re: installing APK without eclipse/android SDK

2012-02-13 Thread manish pathak
John, install android sdk , and just put the command on command prompt of Vista adb install apk_name.apk Thanks Regards Manish Pathak -- You received this message because you are subscribed

[android-developers] Android 4.0 Emulator issue

2011-12-22 Thread Manish
have tried it with generic build and maguro build. With generic build I am getting a warning on running the emulator: Data partition is already in use, changes would not persist. This warning is not present in the maguro build. Thanks, Manish -- You received this message because you

Re: [android-developers] Please identify witch layout is used in map

2011-12-08 Thread MANISH RAJ
Thanks for quick reply. Regards, manish Manish Kumar Computer Science and Engineering (2008-2012) Govt. Model Engineering College Cochin-21 +919287301035 manishrajja...@gmail.com -- You received this message because you are subscribed to the Google Groups Android Developers group

Re: [android-developers] Please identify witch layout is used in map

2011-12-08 Thread MANISH RAJ
Hi TreKing, I don't know how to make transparent background of Esso Cheers layout. Please guide me to do this... Regards, manish Manish Kumar Computer Science and Engineering (2008-2012) Govt. Model Engineering College Cochin-21 +919287301035 manishrajja...@gmail.com -- You received

[android-developers] Hardware requirement for 3.0 on Windows

2011-11-30 Thread Manish Garg
Hi All, I am trying to run my application on android 3.0 emulator on windows machine having window 7 OS. It is very slow. Sometime application is not getting started. Is there any specific hardware requriement like RAM size for android 3.0. -- You received this message because you are

[android-developers] Help in integrating omniture in android app

2011-11-07 Thread Manish Garg
Hi, I need help to get information regarding integration of Omniture in Android app. Is it possible to integrate omniture in Android app and collect analytics data. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send

[android-developers] Problem in facebook logout

2011-11-03 Thread Manish Garg
but it is returning Invalid API key. There is no provision in logout function to send API key and I am using same facebook object using which I had logged in. ~Manish -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email

Re: [android-developers] New to Android

2011-10-28 Thread MANISH RAJ
the target then simply edit AndroidManifest.xml files Thanks, manish Manish Kumar Computer Science and Engineering (2008-2012) Govt. Model Engineering College Cochin-21 +919287301035 manishrajja...@gmail.com -- You received this message because you are subscribed to the Google Groups Android

Re: [android-developers] Unable to get Latitude and Longitude of Address using Geocoder

2011-10-28 Thread MANISH RAJ
{ ListAddress locations = geocoder.getFromLocationName(1600 Amphitheatre Parkway, Mountain View, CA, 5); Regards, manish Manish Kumar Computer Science and Engineering (2008-2012) Govt. Model Engineering College Cochin-21 +919287301035 manishrajja...@gmail.com -- You received this message

[android-developers] Google Map : Replacing zoom buttom to a customize button and giving control to them

2011-10-24 Thread manish
to them. Please give me some suggestion regarding this problem. Thanks a lot... Regards, manish -- 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

Re: [android-developers] Google Map : Replacing zoom buttom to a customize button and giving control to them

2011-10-24 Thread MANISH RAJ
Thank you TreKing for your answer. I got it ! Regards, manish Manish Kumar Computer Science and Engineering (2008-2012) Govt. Model Engineering College Cochin-21 +919287301035 manishrajja...@gmail.com -- You received this message because you are subscribed to the Google Groups

Re: [android-developers] Re: Android Emulator internet connectivity Problem

2011-10-22 Thread manish sandhan
. 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 Manish

[android-developers] Android Emulator internet connectivity Problem

2011-10-21 Thread manish sandhan
the android sdk manager... Still it did not work pls help... pls help... -- Thanks Regards Manish Sandhan Cell No.--+91-9421572024 -- 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

[android-developers] DRM implementation

2011-10-20 Thread Manish Garg
Hi All, My requirement is to publish my application from client site instead of Android market. So I need to implement DRM. Please suggest some solution for it. Regards, Manish Garg -- You received this message because you are subscribed to the Google Groups Android Developers group. To post

[android-developers] Re: DRM implementation

2011-10-20 Thread Manish Garg
download. One person can download app on different devices. On Oct 20, 11:22 am, Manish Garg mannishga...@gmail.com wrote: Hi All, My requirement is to publish my application from client site instead of Android market. So I need to implement DRM. Please suggest some solution for it. Regards

[android-developers] Re: Samsung Galaxy S2 (2.3.4) and Arduino ADK

2011-10-02 Thread Manish Tanwar
There is another way to use Samsung Galaxy s2 with Arduino Mega Adk 2560 to use with ADB. i try but get error like OSCOKIRQ failed to assert after giving two / tree day i found out the problem now use with Samsung Galaxy s2 and working like piece of cake. For ADK supported deice id sould be in

[android-developers] Re: Samsung Galaxy S2 (2.3.4) and Arduino ADK

2011-09-27 Thread Manish Tanwar
On Sep 13, 1:34 am, hudvin hud...@gmail.com wrote: Is Arduino ADK compartible with SG s2? I have done all steps fromhttp://developer.android.com/guide/topics/usb/adk.html but all I see is Connect board lable on main activity of DemoKit app. Did you Find any Solution i have Samsung galaxy

[android-developers] ImageView not getting vertically centered

2011-08-25 Thread Manish Garg
android:id=@+id/imgLayout android:gravity=center ImageView android:id=@+id/documentImg android:layout_width=wrap_content android:layout_height=wrap_content /ImageView /LinearLayout /ScrollView Regards, Manish Garg -- You

[android-developers] Re: ImageView not getting vertically centered

2011-08-25 Thread Manish Garg
    android:id=@+id/preview_image     android:layout_width=wrap_content     android:layout_width=wrap_content     android:layout_centerInParent=true / On Aug 25, 1:39 pm, Manish Garg mannishga...@gmail.com wrote: Hi All, I need to display one image on the screen who's size depends upon the image

[android-developers] Difference between removeAllViewsInLayout() and removeAllViews()

2011-08-11 Thread Manish Garg
Hi All, Whats difference in between removeAllViewsInLayout() and removeAllViews(). I am populating a linear layout dynamicaly. Depending upon response, I have to clear the past child views and create new views. Which function I should use. I have used removeAllViews() but views didn't get

[android-developers] Re: Custom Simpleadapter not updating listview on notifyDataSetChanged

2011-08-11 Thread Manish Garg
type.equalsIgnorCase(...)==true, then your view is not updated at all: getView returns the view that was passed in. On Aug 5, 1:53 am, Manish Garg mannishga...@gmail.com wrote: Hi All, I am using following adapter class when I am calling notifyDataInvalidate and then notifyDataSetChanged

[android-developers] Pre-defined length for password text

2011-08-09 Thread Manish Garg
Hi, Is it possible to set the pre-defined length for the password fields? I am setting Input type of a text view as TextPassword but its length appear same as that of number of character in password. I want to display 8 '*' to the user -- You received this message because you are subscribed to

[android-developers] Custom Simpleadapter not updating listview on notifyDataSetChanged

2011-08-04 Thread Manish Garg
Hi All, I am using following adapter class when I am calling notifyDataInvalidate and then notifyDataSetChanged, it is not updating listview. strangely I have two instance of this adapter, in one of them list is getting updated. public class CalendarEventAdapter extends SimpleAdapter {

[android-developers] Re: TextWatcher in inherited SimpleAdapter

2011-07-11 Thread Manish Garg
Hi All, I have also tried to override getFilter() function and returning super.getFilter() but nothing is working. On Jul 10, 9:04 pm, Manish Garg mannishga...@gmail.com wrote: Hi All, In my code, I was using following code for textwatcher         private TextWatcher filterTextWatcher = new

[android-developers] TextWatcher is not giving result n inherited SimpleAdapter

2011-07-11 Thread Manish Garg
, Manish Garg mannishga...@gmail.com wrote: Hi All, I have also tried to override getFilter() function and returning super.getFilter() but nothing is working. On Jul 10, 9:04 pm, Manish Garg mannishga...@gmail.com wrote: Hi All, In my code, I was using following code for textwatcher

[android-developers] TextWatcher in inherited SimpleAdapter

2011-07-10 Thread Manish Garg
and solution then please let me know. Thanks Regards, Manish Garg -- 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

[android-developers] Re: ListView is no clickable

2011-06-28 Thread Manish Garg
ali.chous...@gmail.com wrote: Manish, A very basic question, but did you by change forget to put @Override before the declaration of setOnItemClickListener? -- Ali Chousein Geo-Filtered Assistanthttp://geo-filtered-assistant.blogspot.com/- Hide quoted text - - Show quoted

[android-developers] ListView is no clickable

2011-06-27 Thread Manish Garg
/CheckBox /RelativeLayout Regards, Manish Garg -- 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

[android-developers] Handling radio button of the single choice List

2011-06-22 Thread Manish Garg
of the radio button or view of the radio button so that I can implement onClickListener of the radio button. Or is there any other solution. Thanks, Manish Garg -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send

[android-developers] Aligning tabs as center horizontal

2011-06-16 Thread Manish Garg
Hi All, I want to align my tabs as center horizontal and want to use the side space to place other buttons. Is it possible. I want that tab content use complete space but tab title get aligned center horizontal. Regards, Manish -- You received this message because you are subscribed

[android-developers] Is it possible for TabActivity to have child TabActivity

2011-06-09 Thread Manish Garg
Hi All, I want to implement nested tab activity but getting exception in some cases like at the time of calling dialog.show from the activity of the nested activity and during drawing grid view inside nested activity. Regards, Manish Garg -- You received this message because you are subscribed

[android-developers] Re: Is it possible for TabActivity to have child TabActivity

2011-06-09 Thread Manish Garg
: No it is not.  There is only one level of nesting of activities. On Thu, Jun 9, 2011 at 2:02 PM, Manish Garg mannishga...@gmail.com wrote: Hi All, I want to implement nested tab activity but getting exception in some cases like at the time of calling dialog.show from the activity of the nested

[android-developers] Re: Is it possible for TabActivity to have child TabActivity

2011-06-09 Thread Manish Garg
window -- token android.app.LocalActivityManager$LocalActivityRecord@43ed5c78 is not valid; is your activity running? On Jun 9, 7:39 pm, Dianne Hackborn hack...@android.com wrote: Just use the tab widget yourself. On Thu, Jun 9, 2011 at 4:25 PM, Manish Garg mannishga...@gmail.com wrote

[android-developers] Re: Is it possible for TabActivity to have child TabActivity

2011-06-09 Thread Manish Garg
9, 2011 at 4:53 PM, Manish Garg mannishga...@gmail.com wrote: Sorry I didn't get your point. You said that it is not possible to have more than one level. I had used tab widget only for displaying nested level but facing application crash at the time of displaying dialog from the child

[android-developers] Re: Is it possible for TabActivity to have child TabActivity

2011-06-09 Thread Manish Garg
that is shown based on the tab. On Thu, Jun 9, 2011 at 4:53 PM, Manish Garg mannishga...@gmail.com wrote: Sorry I didn't get your point. You said that it is not possible to have more than one level. I had used tab widget only for displaying nested level but facing application crash at the time

[android-developers] Bluetooth encryption technique in android

2011-06-06 Thread manish
Regards Manish -- 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

[android-developers] How to return activity result from child tab activity to the calling activity

2011-06-02 Thread Manish Garg
which has two child activity C and D. I have started B using startActivityForResult but D is not returning result to B or to A. Please help me to solve this issue. Regards, Manish -- You received this message because you are subscribed to the Google Groups Android Developers group. To post

[android-developers] Re: how to center aligned multiline text

2011-04-23 Thread Manish Garg
:-(. I dont think it will be good workaround. I need to make my application compatible to different form factor and in case of tablet it is coming in one line. So I can't put new line character. On Apr 22, 3:10 pm, Kostya Vasilyev kmans...@gmail.com wrote: Manish, As far as I can tell, when

[android-developers] how to center aligned multiline text

2011-04-22 Thread Manish Garg
in center but it wasn't left aligned with respect to each other. I wish that lines should be in center of the tab view and left aligned with themselves. Thanks Regards, Manish Garg -- You received this message because you are subscribed to the Google Groups Android Developers group. To post

[android-developers] Problems in creating an android chat application

2011-04-20 Thread manish
appreciated. Thanks, Manish -- 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

[android-developers] Re: Running application in Portrait mode on HoneyComb

2011-04-15 Thread Manish Garg
Hi All, My system has 2GB ram but it becomes unresponsive when I run Table 3.0 emulator. Can someone suggest sd card size, ram and vm setting. On Apr 4, 3:46 pm, Manish Garg mannishga...@gmail.com wrote: Hi, Mh application runs in portrait mode. when i am trying to run application

[android-developers] Running application on Dell Streak emulator

2011-04-14 Thread Manish Garg
same thing on 2.2 emulator. If someone know any emualtor specific to Dell Streak or some other way to test application for Dell Streak, then please let me know. Thanks Regards, Manish -- You received this message because you are subscribed to the Google Groups Android Developers group. To post

[android-developers] java.lang.NoSuchMethodException + Jackson Parser

2011-04-06 Thread Manish Garg
be the problem, in the class type or some wrong function of the jackson parser has been used. When we face this issue? Regards, Manish -- 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

[android-developers] Re: java.lang.NoSuchMethodException + Jackson Parser

2011-04-06 Thread Manish Garg
provide deserialization. I am also not very sure what deserialization is. When it comes. This code was working fine but after some change at the server side, I am getting this exception. On Apr 6, 10:21 am, Manish Garg mannishga...@gmail.com wrote: Hi All, I am using jackson parser to parse my

[android-developers] Deserialization issue in Jackson Parser + java.lang.NoSuchMethodException

2011-04-06 Thread Manish Garg
._resolveDeserializer(StdDeserializerProvider.java: 336) 04-06 16:42:55.562: ERROR/AndroidRuntime(542): at org.codehaus.jackson.map.deser.StdDeserializerProvider._createAndCache2(StdDeserializerP On Apr 6, 10:21 am, Manish Garg mannishga...@gmail.com wrote: Hi All, I am using jackson parser to parse my

[android-developers] Building application based on 2.2 for 3.0

2011-04-04 Thread Manish Garg
Hi, I had created one application on 2.2. Now my requirement is to run same application on HonyComb but it is not getting build. Do i need to take care something? -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send

[android-developers] Running application in Portrait mode on HoneyComb

2011-04-04 Thread Manish Garg
Hi, Mh application runs in portrait mode. when i am trying to run application on honeycomb it is coming as up side down. Can some one help me on that. Is there some way to launch emulator directly in the portrait mode. -- You received this message because you are subscribed to the Google

[android-developers] Re: Building application based on 2.2 for 3.0

2011-04-04 Thread Manish Garg
Hi, I am trying to run my application in the honeycomb which can run only in portrait mode. 1. Strangely screen is rotating as upside down. My application, time, icons everything is upside down. 2. I am not able to find out back key on the emulator. On Apr 4, 1:53 pm, lbendlin l...@bendlin.us

[android-developers] Under which category Motrola XOOM comes

2011-03-31 Thread Manish Garg
under ldpi. Sorry for my less knoweldge. Tablet: what need to be taken care of when we are making one application which runs on android phones as well as on tablet. (Both has call functionality) Regards, Manish -- You received this message because you are subscribed to the Google Groups Android

[android-developers] Query related to WXGA

2011-03-31 Thread Manish Garg
Hi, I have a requirement to support WXGA in my android application but I am not sure what WXGA stands for? From which drawable folder it will take images. Is there something specific which I should take care while supporting my application on WXGA. -- You received this message because you are

[android-developers] Difference between Phone and Tablet

2011-03-31 Thread Manish Garg
Hi, From development point of view, what is the difference in between Phone and tablet. Phone and tablet both has call functionality. Is size is the only thing which we need to take care. -- You received this message because you are subscribed to the Google Groups Android Developers group. To

[android-developers] Re: Difference between Phone and Tablet

2011-03-31 Thread Manish Garg
Murphy mmur...@commonsware.com wrote: On Thu, Mar 31, 2011 at 6:11 PM, Manish Garg mannishga...@gmail.com wrote: From development point of view, what is the difference in between Phone and tablet. Phone and tablet both has call functionality. Not necessarily. In fact, most tablets

[android-developers] Reducing resource folder size from apk

2011-03-16 Thread Manish Garg
Hi All, In my application, we are using lots of images to create UI because of which drawable folder size is quite big. Now to take care of different resoultion, we have three folders for ldpi, hdpi and mdpi (haven't xdpi), which again is increasing its size. I want to know is there any way that

Re: [android-developers] Re: How to create array object of SharedPreference to store various data

2011-03-11 Thread MANISH RAJ
Thanks for reply -- 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

[android-developers] Re: Managing Out of memory

2011-03-09 Thread Manish Garg
() for how much free memory is left) Here it is on the android developer website:http://developer.android.com/reference/java/lang/Runtime.html On Mar 9, 1:06 am, Manish Garg mannishga...@gmail.com wrote: Hi All, I want to check low memory state in my application. In my application i am

[android-developers] Re: Managing Out of memory

2011-03-09 Thread Manish Garg
looking for (specifically totalMemory() for the device's total memory, and freeMemory() for how much free memory is left) Here it is on the android developer website:http://developer.android.com/reference/java/lang/Runtime.html On Mar 9, 1:06 am, Manish Garg mannishga...@gmail.com wrote: Hi

[android-developers] Managing Out of memory

2011-03-08 Thread Manish Garg
Hi All, I want to check low memory state in my application. In my application i am fetching some iamges from the server and displaying them in the gallery. I am fetching images in batch, not at single time. At the time of low memory, i want to release previously fetched image so that i can store

[android-developers] How to create array object of SharedPreference to store various data

2011-03-07 Thread manish
Hi, everyone .I am very new in android.I am trying to develop app which has a list view of various places name and each have its property (name, lat, long, proximity).The first option in list view is add new places for reminder and below that saved places.Every places should have its own data.I am

[android-developers] Mount USB pendriveto simulate SD Card functionality

2011-03-02 Thread manish
Hi , I am working on a board in which currently SDCARD is not active and having 1 usb port. So i need to connect the USB hub to connect the Other USB devices.I am working on Froyo 2.2. I want to mount USB pendrive to as a SD Card so that Video camera, gallery and other apk can be tested. I did

[android-developers] Re: Clear calling activity on finish

2011-03-01 Thread Manish Garg
A then B then C and now let us say session expire and i finish only C, A and B will be still in stack. So it will not work. On Mar 1, 2:17 pm, Kostya Vasilyev kmans...@gmail.com wrote: Manish, I would guess that in the case where login is needed, after the user logs in, you launch the real activity

[android-developers] Clear calling activity on finish

2011-02-28 Thread Manish Garg
Hi, In my application, I want that my first screen which is login page should not come back after pressing back key. I had set noHistory tag for it. but now i have one more task to do, if my session has expired, i want to come back to login page and also clear my stack, i am trying

[android-developers] Re: Clear calling activity on finish

2011-02-28 Thread Manish Garg
Hi All, any suggestion? On Feb 28, 3:32 pm, Manish Garg mannishga...@gmail.com wrote: Hi, In my application, I want that my first screen which is login page should not come back after pressing back key. I had set noHistory tag for it. but now i have one more task to do, if my session has

[android-developers] Calculating list view item height

2011-02-25 Thread Manish Garg
Hi, I want to set listview height in such a way that it doesn't display scrollbar. for it i am trying to find out listview items height, sum all of the list view items and set them as the height of the listView. My list is like accordian. It will be visible when i will click on a button and will

[android-developers] Focus is not coming on list in slidingDrawer

2011-02-25 Thread Manish Garg
Hi, In my application, I have created a tabactivity which contains slidingDrawer to display some dynamic messages. I am using listview for it. now focus is on my child activity when I am clicking on slidingDrawer, it is getting opened but focus is not coming on the list. -- You received this

[android-developers] Re: Setting filter on List using Text Watcher

2011-02-24 Thread Manish Garg
row. Thanks in advance, ~Manish. -- 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

[android-developers] Re: Changing tab background image

2011-02-23 Thread Manish Garg
it. thanks in advance ~Manish On Feb 21, 5:34 pm, Nguyen Dat nguyenda...@gmail.com wrote: Hi cool.manish For custom selector, try this: sample_selector.xml ?xml version=1.0 encoding=utf-8? selector xmlns:android=http://schemas.android.com/apk/res/android;     item android:state_focused=true

[android-developers] Re: Changing tab background image

2011-02-23 Thread Manish Garg
done. Actually rather than setting android:drawable it needs android:color property to be set On Feb 23, 2:28 pm, Manish Garg mannishga...@gmail.com wrote: I created some entries in color.xml to create color and then done whatever u have said. in tab_layout xml, i have put android:textcolor

  1   2   >