Uhtq
On Feb 20, 2013 2:41 AM, <android-developers@googlegroups.com> wrote:
>
>   Today's Topic Summary
>
> Group: http://groups.google.com/group/android-developers/topics
>
> How to do sketch by programmatically in Android? [1 Update]
> Android Canvas development [4 Updates]
> Refund [1 Update]
> about jni lib***.so question [1 Update]
> MediaPlayer suddenly stopped working in Android 4.2 [3 Updates]
> How use my app's notifications instead of calendar app's? [2 Updates]
> gradle and libs [6 Updates]
> How to update ADT on Eclipse BUNDLE from google android developer..? [3
Updates]
> Application not Visible on emulator Screeen [5 Updates]
> Are NPOT textures compressed to ETC format supported on SGX540 GPUs? [2
Updates]
> IP address [4 Updates]
> AudioRecord sample rate + Touch Sounds + HDMI [1 Update]
> Testing onSaveInstanceState/onRestoreInstanceState [1 Update]
> android app icon does not appear in airwatch [2 Updates]
> Multiple HTTP requests [2 Updates]
> Alternative SQLite [1 Update]
> Debugger to run Android Applications [2 Updates]
> Different sets of widgets for pre-3.0 and post-3.0 devices? [2 Updates]
> DialogPreference - Background remove [1 Update]
> Getting the current theme background-color [1 Update]
> Expansion File [1 Update]
> Spinner [1 Update]
>  How to do sketch by programmatically in Android?
> Meena Rengarajan <meenasoft...@gmail.com> Feb 19 09:55PM -0800
>
> Hi,
> Anyone worked on Sketcher- Lite app in Android. I have tried alot and
> googled so. I dont find any sources or links regarding Sketching in
android
> ...more
>  Android Canvas development
> janvi <jagruthi.bha...@gmail.com> Feb 19 06:40AM -0800
>
> Hello all
>
> Iam new to canvas android development.I want to develop an android app
> using canvas,but how to give support to diiferent devices(hdpi,ldpi,mdpi)
> is bothering me alot.
> ...more
> bob <b...@coolfone.comze.com> Feb 19 07:08AM -0800
>
> I would just put your stuff in drawable-nodpi to start with. That way
> nothing will get scaled unless you explicitly make it scaled.
>
>
>
> On Tuesday, February 19, 2013 8:40:29 AM UTC-6, janvi ...more
> janvi <jagruthi.bha...@gmail.com> Feb 19 07:47PM -0800
>
> Ya thanks for your reply...
>
> But my doubt is suppose we are drawing a rectangle to screen resolution
of
> 480*800 using the following code
>
>
> public class DrawView extends View {
> ...more
> Stephen Lebed <srle...@gmail.com> Feb 19 09:53PM -0800
>
> I highly recommend this book "Beginning Android Games" by Mario Zechner.
> He explains things very well and if you're new to Android, this is the
> book to get, even if your not planning on writing ...more
>  Refund
> Stephen Lebed <srle...@gmail.com> Feb 19 09:51PM -0800
>
> My apps are paid apps and I don't use in-app purchasing at all. I don't
> think there is a way to disable an app if I refund a customers money. At
> least the way things are set up now. ...more
>  about jni lib***.so question
> Chuz Lin <shmcc...@gmail.com> Feb 19 07:31PM -0800
>
> Hi,all
> I had build an android sdk,I wanted to modify a apk which under the
> path "/system/app",but I am fail. When I added a jni interface to apk,I
> don`t know why it worked well with Eclipse ...more
>  MediaPlayer suddenly stopped working in Android 4.2
> Brill Pappin <br...@pappin.ca> Feb 19 02:18PM -0800
>
> So, for all of you paying attention to this thread or having a similar
> issues with MediaPlayer.
>
> It appears that the MediaPlayer is picky about what directly the files
are
> stored in.
> ...more
> Mark Murphy <mmur...@commonsware.com> Feb 19 05:46PM -0500
>
> If you can create a sample project that reproduces the error, post it
> and your description as an issue on http://b.android.com. If you think
> of it, reply on this thread with the issue link.
>
>
> -- ...more
> Brill Pappin <br...@pappin.ca> Feb 19 06:19PM -0800
>
> I can try that. I should have some time away from the crunch later in the
> month :)
>
> To really reproduce exactly what I was doing, I'll need to be able to
> download an mp3 to the external memory, ...more
>  How use my app's notifications instead of calendar app's?
> don rhummy <donrhu...@yahoo.com> Feb 19 02:43PM -0800
>
> I'm making a calendar app and I want the system to use my app's
notifications for event reminders instead of the default calendar app's (so
when a user clicks the notification it will open my app ...more
> TreKing <treking...@gmail.com> Feb 19 07:08PM -0600
>
> > notifications for event reminders instead of the default calendar app's
(so
> > when a user clicks the notification it will open my app instead and I
can
> > do custom notifications in 4.x). ...more
>  gradle and libs
> Daniel Rindt <daniel.ri...@gmail.com> Feb 19 02:52AM -0800
>
> Hello,
>
> my android lib makes use of some other libs which reside in /libs as
usual
> in android projects. My gradle file looks like this:
>
> buildscript {
> repositories {
> mavenCentral() ...more
> bob <b...@coolfone.comze.com> Feb 19 07:13AM -0800
>
> You say "lib" in one place and "libs" in another. Make sure you pick one
> name and use it everywhere.
>
>
>
> On Tuesday, February 19, 2013 4:52:54 AM UTC-6, Daniel Rindt wrote:
> ...more
> Daniel Rindt <daniel.ri...@gmail.com> Feb 19 09:54AM -0800
>
> Am Dienstag, 19. Februar 2013 16:13:32 UTC+1 schrieb bob:
>
> > You say "lib" in one place and "libs" in another. Make sure you pick
one
> > name and use it everywhere.
>
> a qualified answer would be ...more
> Jonathan S <xfsuno...@gmail.com> Feb 19 10:52AM -0800
>
> You already have
>
> dependencies {
> compile fileTree(dir: 'libs', include: '*.jar')
> }
>
> you have to put all *.jar file inside the libs directory. If any *.jar
file
> outside of the libs folder ...more
> Daniel Rindt <daniel.ri...@gmail.com> Feb 19 11:28AM -0800
>
> Am Dienstag, 19. Februar 2013 19:52:59 UTC+1 schrieb Jonathan S:
> > }
>
> > you have to put all *.jar file inside the libs directory. If any *.jar
> > file outside of the libs folder wouldn't be ...more
> Lew <lewbl...@gmail.com> Feb 19 01:26PM -0800
>
> bob wrote:
>
> > You say "lib" in one place and "libs" in another. Make sure you pick
one
> > name and use it everywhere.
>
> Where? I only see "libs" in the script.
>
> Surely you aren't referring to ...more
>  How to update ADT on Eclipse BUNDLE from google android developer..?
> Pratama Nur Wijaya <set.mnemo...@gmail.com> Feb 19 06:42AM -0800
>
> <
https://lh6.googleusercontent.com/-kuA1nyPvKUs/USOPHHfiaRI/AAAAAAAAAe0/Y3yogdDoxOo/s1600/eclipse+bundle.png
>
> Hello
> anyone can help me how to update ADT on Eclipse bundle from google..??
> ...more
> bob <b...@coolfone.comze.com> Feb 19 12:36PM -0800
>
> What makes you think you need an update?
>
>
> There are different components and different update mechanisms.
>
>
>
>
> On Tuesday, February 19, 2013 8:42:24 AM UTC-6, Pratama Nur Wijaya wrote:
> ...more
> Lew <lewbl...@gmail.com> Feb 19 12:49PM -0800
>
> bob wrote:
>
> > What makes you think you need an update?
>
> > There are different components and different update mechanisms.
>
> Or instead of challenging is undoubtedly excellent reasons for asking,
...more
>  Application not Visible on emulator Screeen
> Sagar Rout <sagar.rout...@gmail.com> Feb 19 02:37AM -0800
>
> Yes that is now what to do next....
>
> On Monday, 18 February 2013 21:15:11 UTC+5:30, Arnaud VALLAT wrote:
> ...more
> Sagar Rout <sagar.rout...@gmail.com> Feb 19 02:43AM -0800
>
> Hey Bob,
>
> I already tried that option i mean that application is not visible on the
> application list on the home screen
> On Monday, 18 February 2013 21:11:17 UTC+5:30, bob wrote:
> ...more
> Daniel Rindt <daniel.ri...@gmail.com> Feb 19 02:54AM -0800
>
> Am Dienstag, 19. Februar 2013 11:43:17 UTC+1 schrieb Sagar Rout:
>
> > Hey Bob,
>
> > I already tried that option i mean that application is not visible on
the
> > application list on the home screen
> ...more
> Sagar Rout <sagar.rout...@gmail.com> Feb 19 06:16AM -0800
>
> No, suppose you run an application after some run it is not on the screen
> when i see in the manage application there is my installed software not
> able to run on the emulator on the screen. ...more
> bob <b...@coolfone.comze.com> Feb 19 12:33PM -0800
>
> You probably need to go into the Apps section of the device, not the home
> screen.
>
>
> Try to find a button that is like 9 rectangles in a square formation… 3x3.
>
>
> Maybe post a screenshot?
>
> ...more
>  Are NPOT textures compressed to ETC format supported on SGX540 GPUs?
> Dmitry Suzdalev <dim...@gmail.com> Feb 19 02:15AM -0800
>
> Yep! Confirming this.
> Galaxy Nexus, ICS 4.0.4.
>
> Got this segfault while using POT:
>
> I/DEBUG (26556): #00 pc 0000dbec /system/lib/libc.so (memcpy)
> I/DEBUG (26556): #01 lr ...more
> bob <b...@coolfone.comze.com> Feb 19 12:27PM -0800
>
> Are your width and height multiples of 4 at least?
>
>
> That is necessary for that compression.
>
>
>
> On Tuesday, January 24, 2012 6:54:47 PM UTC-6, markusn82 wrote:
> ...more
>  IP address
> bob <b...@coolfone.comze.com> Feb 19 07:05AM -0800
>
> Why do you say that?
>
> Here's another one if you don't like that one:
>
> * public static String int_ip_to_string (int hostAddress) {*
> * byte[] addressBytes = { (byte)(0xff & hostAddress),* ...more
> Larry Meadors <larry.mead...@gmail.com> Feb 19 08:43AM -0700
>
> > Why do you say that?
>
> Because it's a ridiculously obfuscated solution to a problem with a
> simple one-line solution:
>
> InetAddress address = ...more
> bob <b...@coolfone.comze.com> Feb 19 08:33AM -0800
>
> I actually happened upon that code today:
>
>
http://stackoverflow.com/questions/1221517/how-to-get-subnet-mask-using-java
>
> private static String intToIP(int ipAddress) {
> String ret = ...more
> Nobu Games <dev.nobu.ga...@gmail.com> Feb 19 09:30AM -0800
>
> Bob was asking for the string representation of an integer IP number. His
> solution is correct, straightforward and does not require the
instantiation
> of three intermediate objects just for getting ...more
>  AudioRecord sample rate + Touch Sounds + HDMI
> RLScott <fixthatpi...@yahoo.com> Feb 19 08:03AM -0800
>
> Here is a strange interaction that I discovered on one particular
> brand of Android Tablet. This interaction can cause the audio sample
> rate to change by 9% under certain condition. ...more
>  Testing onSaveInstanceState/onRestoreInstanceState
> Larry Meadors <larry.mead...@gmail.com> Feb 19 08:33AM -0700
>
> I'm trying to do instrumentation testing of an activity that uses
fragments.
>
> I'm trying to test the onSaveInstanceState by doing this:
>
>
> /*************/
>
> runTestOnUiThread(new Runnable() { ...more
>  android app icon does not appear in airwatch
> Jags <jag...@gmail.com> Feb 19 02:38AM -0800
>
> I am trying to publich my android app in airwatch. When uploading the apk
> in airwatch app icon is not displayed, but when I try for a app store
apk,
> it appears in the panel.
>
> But my apk displays ...more
> TreKing <treking...@gmail.com> Feb 19 09:21AM -0600
>
>
> > what might am i be doing wrong ?
>
>
> Not asking a group or forum dedicated for this "airwatch", whatever it is.
> ...more
>  Multiple HTTP requests
> Daniel Rindt <daniel.ri...@gmail.com> Feb 19 03:02AM -0800
>
>
> > I did a test using apache jmetter sending multiple requests to this
server
> > and had no problems.
>
> > This can be a limitation of the network? SO?
>
> tried this: ...more
> bob <b...@coolfone.comze.com> Feb 19 07:14AM -0800
>
> This is not surprising on 3G. I would try it on Wifi. I'd be surprised if
> it happened on Wifi.
>
>
>
> On Saturday, February 16, 2013 11:16:00 AM UTC-6, Diego Nunes wrote:
> ...more
>  Alternative SQLite
> Sagar Rout <sagar.rout...@gmail.com> Feb 19 06:14AM -0800
>
> Hello friends,
>
> is there any solution for the alternative of SQlite database so that we
can
> drag and drop and the coding just like .NET
> so that easy to learn. is it ?
> please
> ...more
>  Debugger to run Android Applications
> Ashu <ashutosh.deshmukh2...@gmail.com> Feb 19 04:43AM -0800
>
> You should have mentioned the Android SDK Version that you are using when
> launching emulator, in your post.
>
> Assuming that you are using latest Android SDK-rev 21, you can edit your
...more
> Sagar Rout <sagar.rout...@gmail.com> Feb 19 05:35AM -0800
>
> thanks guys i got it....
>
> On Tuesday, 19 February 2013 18:13:02 UTC+5:30, Ashu wrote:
> ...more
>  Different sets of widgets for pre-3.0 and post-3.0 devices?
> al <achim.leub...@googlemail.com> Feb 19 12:08AM -0800
>
> You can "statically" configure this:
>
> In AndroidManifest.xml for the widget receivers add:
> <receiver android:enabled="@bool/beforeHoneycomb" ...>...
> <receiver ...more
> "Digipom Inc." <digi...@gmail.com> Feb 19 08:13AM -0500
>
> Hi Al,
>
> Thanks, this seems like a good approach. This was just what I was
wondering
> -- how to statically configure things so as to avoid the Android bugs with
> runtime enabling/disabling. ...more
>  DialogPreference - Background remove
> Filipe Batista <batista.fil...@gmail.com> Feb 19 03:29AM -0800
>
> Hi,
>
> I have a custom DialogPreference where i have set my layout (*
> setDialogLayoutResource*), but the Dialog shows the "default" black
> background around the layout.
> How can i remove that black ...more
>  Getting the current theme background-color
> dashman <erjdri...@gmail.com> Feb 19 03:29AM -0800
>
> I've asked this and related questions a few times and had no
> response. So I'll try to be clear.
>
> I'm writing an app that I hope the user will be able to change
> the Theme via preferences - from ...more
>  Expansion File
> Michel Cabillot <komfus...@gmail.com> Feb 19 02:53AM -0800
>
> Hello,
>
> I would simply like to know if there is some sample project to implement
an
> Expansion File into an Android App > 50mo.
> I've tried to read the Developer's guide, but as a newbie, I've been
...more
>  Spinner
> Arun Kumar K <arunkuma...@npcompete.net> Feb 19 03:39PM +0530
>
> Hi guys,
>
> If i pressed the spinner i ll get the popup menu.....if my list contain
> only one item means then the spinner does not show the popupmenu....how
can
> i do tat one
>
> -- ...more
>
> You received this message because you are subscribed to the Google Group
android-developers.
> You can post via email.
> To unsubscribe from this group, send an empty message.
> For more options, visit this group.
>
> --
> --
> 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.
>
>
Tdy

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


Reply via email to