[android-developers] how to increase the size of icon inside floating action button ?

2016-08-12 Thread Pradeep Kumar Reddy
how to increase the size of icon inside floating action button I'm trying to put plus icon inside floating action button. I have tried with 48dp, 72dp, 96dp icons, but still the icon is looking too small. -- You received this message because you are subscribed to the Google Groups

[android-developers] How to Increase The Performance Of Mobile Apps?

2016-01-05 Thread Howard Cornell
App performance is one of the most crucial factors that determines the success of a mobile application. Performance of your mobile application can be referred to both – how your app is perceived by end & ideal development standards? -- You received this message because you are subscribed to

Re: [android-developers] How to Increase The Performance Of Mobile Apps?

2016-01-05 Thread Kristopher Micinski
http://developer.android.com/tools/debugging/debugging-tracing.html http://developer.android.com/tools/help/systrace.html Kris On Tue, Jan 5, 2016 at 4:25 AM, Howard Cornell wrote: > App performance is one of the most crucial factors that determines the > success

[android-developers] How to increase textsize

2012-09-10 Thread plw
How do I make the size of text larger than the rest of the text that follow it so that it look like a heading? I have tried using setTextSize but it doesn't have any effect when I run eclipse when I do this TextView

Re: [android-developers] How to increase textsize

2012-09-10 Thread Mark Murphy
Either use two TextViews, or create your text using a SpannableStringBuilder and apply appropriate spans for formatting, or create your text as HTML and use Html.fromHtml() to create the Spanned object that you pass to setText(). On Mon, Sep 10, 2012 at 5:26 AM, plw i...@knutsford-software.co.uk

Re: [android-developers] How to increase textsize

2012-09-10 Thread Knutsford Software
ah right SpannableStringBuilder seems to be the way to go. Thanks I will give it a go Pam - Original Message - From: Mark Murphy mmur...@commonsware.com To: android-developers@googlegroups.com Sent: Monday, September 10, 2012 12:12 PM Subject: Re: [android-developers] How

Re: [android-developers] How to Increase frame rate (fps) from onPreviewFrame??

2012-01-23 Thread TomL
Starting new threads with the exact same question will not improve the chances of getting an answer. Stay on just one of your threads. Re-read what others have suggested to you. Reply to your own thread with updates about different techniques that you have tried that doesn't work. Tom --

RE: [android-developers] How to Increase frame rate (fps) from onPreviewFrame??

2012-01-23 Thread Muhammad UMER
Subject: Re: [android-developers] How to Increase frame rate (fps) from onPreviewFrame?? Starting new threads with the exact same question will not improve the chances of getting an answer. Stay on just one of your threads. Re-read what others have suggested to you. Reply to your own thread

[android-developers] How to Increase frame rate (fps) from onPreviewFrame??

2012-01-19 Thread muhammad.ume...@hotmail.com
hi, I am getting frames from onPreviewFrame, compress to jpeg image with YUV and send over the network(TCP), but the problem is, i want to increase the frame rate. Now it is 4fps but i want 15fps and my image size is 4- 6 kb what can i do to increase frame rate, here is my code public void

Re: [android-developers] How to Increase frame rate (fps) from onPreviewFrame??

2012-01-19 Thread TreKing
Could you do this group a favor and stop asking the same question every 2 days? Hmmm? Thanks. https://groups.google.com/groups/profile?show=moreenc_user=lar4IxsAAADNYP7nVARJZ-sgplZcu2aEW0rZFdfcaar5x5y0kptMbAgroup=android-developers

RE: [android-developers] How to Increase frame rate (fps) from onPreviewFrame??

2012-01-19 Thread Muhammad UMER
I am really sorry, but i need it and i not get the appropriate answer. Sorry again. From: treking...@gmail.com Date: Thu, 19 Jan 2012 08:49:50 -0600 Subject: Re: [android-developers] How to Increase frame rate (fps) from onPreviewFrame?? To: android-developers@googlegroups.com Could you do

Re: [android-developers] How to Increase frame rate (fps) from onPreviewFrame??

2012-01-19 Thread TreKing
On Thu, Jan 19, 2012 at 8:55 AM, Muhammad UMER muhammad.ume...@hotmail.comwrote: I am really sorry, but i need it and i not get the appropriate answer. Well, sorry, but if no one has presented an appropriate answer at this point, than continuing to post the same question over and over is not

[android-developers] How to increase frame rate(fps) of onPreviewFrame ??‏

2012-01-16 Thread muhammad.ume...@hotmail.com
hi, I am getting frames from onPreviewFrame, compress to jpeg image with YUV and send over the network, but the problem is, i want to increase the frame rate. Now it is 4fps but i want 15fps what can i do to increase frame rate, here is my code public void onPreviewFrame(byte[] data, Camera

[android-developers] How to increase frame per second ??

2012-01-15 Thread muhammad.ume...@hotmail.com
hi, I am getting frames from onPreviewFrame, compress to jpeg image with YUV and send over the network, but the problem is, i want to increase the frame rate. Now it is 4fps but i want 15fps what can i do to increase frame rate, here is my code public void onPreviewFrame(byte[] data, Camera

[android-developers] How to increase Notification Sound by my app

2011-05-08 Thread udit
Hi, I m trying to increase the Notification Volume by my app while in Phone is in silent for all volume using following code. int NOTIFICATIONVOLUME_B = audio.getStreamVolume(AudioManager.STREAM_NOTIFICATION); audio.setStreamVolume(AudioManager.STREAM_NOTIFICATION, audio

[android-developers] how to increase voice recoding time?

2011-03-23 Thread shailaja
Hi, In my app, voice search is a feature. For that, user should say something to do voice search. My requirement is to improve voice recording time. if any one knows to do this, please let me know. Any response would be appreciated. Best Regards shailaja -- You received this message because

[android-developers] how to increase voice recording time?

2011-03-23 Thread shailaja
Hi, In my app, voice search is a feature. For that, user should say something to do voice search. My requirement is to improve voice recording time. if any one knows to do this, please let me know. Any response would be appreciated. Best Regards shailaja -- You received this message because

[android-developers] how to increase voice recording time?

2011-03-23 Thread shailaja
Hi, In my app, voice search is a feature. For that, user should say something to do voice search. My requirement is to improve voice recording time. if any one knows to do this, please let me know. Any response would be appreciated. Best Regards shailaja -- You received this message because

[android-developers] How to increase the amount of time to consider input complete, in android voice recognition?

2011-03-22 Thread vamsi
Hi In android voice recognition, Can any one know how to increase the amount of time that it should take after we stop hearing speech to consider the input possibly complete. I need to prevent the endpointer cutting off during very short mid-speech pauses while voice recognition. If anyone knows

Re: [android-developers] How to increase the amount of time to consider input complete, in android voice recognition?

2011-03-22 Thread Filip Havlicek
Hi vamsi, check this RecognizerIntent extra http://developer.android.com/reference/android/speech/RecognizerIntent.html#EXTRA_SPEECH_INPUT_COMPLETE_SILENCE_LENGTH_MILLIS Best regards, Filip Havlicek 2011/3/22 vamsi shailajamudathanapa...@gmail.com Hi In android voice recognition, Can any

[android-developers] how to increase the time for android voice recognition?

2011-03-21 Thread vamsi
Hi Does anyone knows how to extend the time period for voice recognition? According to my application user need to say any words, through voice recognition my application will return some output. For that the time period should be more to recognize the complete word from user. To improve waiting

Re: [android-developers] how to increase the time for android voice recognition?

2011-03-21 Thread asaph nesun
plz try again http://123maza.com/75/speed524/ On 3/21/11, vamsi shailajamudathanapa...@gmail.com wrote: Hi Does anyone knows how to extend the time period for voice recognition? According to my application user need to say any words, through voice recognition my application will return

[android-developers] How to increase...?

2010-12-31 Thread Abhilash baddam
Hi, How can we increase the height of title bar. Regards, abhilash.b -- 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

Re: [android-developers] How to increase...?

2010-12-31 Thread Dianne Hackborn
Hide it and put your own layout for title bar you want at the top of your content view. On Fri, Dec 31, 2010 at 1:28 AM, Abhilash baddam abhilash.androiddevelo...@gmail.com wrote: Hi, How can we increase the height of title bar. Regards, abhilash.b -- You received this message

[android-developers] how to increase camera resolution??

2010-11-18 Thread xi developer
I run my application with camera functionality implemented in an android-powered phone, but the camera image I got always has small resolution. It seems by default, the android camera resolution is small (e.g. 640*410), how to increase the resolution (e.g. to 1024 * 768), I use the following code

[android-developers] How to increase FPS (now ~20, desired ~40-50)

2010-01-18 Thread Andre
Hello to all developers! First I want to say that I have read many articles on this subject in this forum and on some external resources(very helpful was Robert Green's diary at www.rbgrn.net and www.droidnova.com). However, despite all of this I want to start topic regarding FPS, and ask for

[android-developers] How to increase virtual keypad size in donut

2009-11-23 Thread vinay H
Hello, Size of Virtual keypad buttons on my platform are very small compared to display size. It is very difficult to select each button with finger. How to increase the size of virtual keypad or button size? Though it covers more area in the display also no problem. Br, -vinay -- You received

[android-developers] How to increase the resolution

2009-11-18 Thread shri
how to increase the resoltion in android... what all changes need to do in the source code to get 1280X720p resolution... -- 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] How to increase speaker volume using AudioTrack

2009-06-26 Thread Breno
Hey everyone, Does anybody knows how to increase the volume of speaker using AudioTrack? the streamed audio is playing in speaker, but not loud as voice call. Here my code mPlayer = new AudioTrack(AudioManager.STREAM_RING, AUDIO_SAMPLE_FREQUENCY_8000HZ,