Re: [android-developers] How do I write an equation in string format in Android?

2012-08-24 Thread Kristopher Micinski
Or try to find an open source Android view that renders LaTeX or mathml, kris On Fri, Aug 24, 2012 at 2:40 PM, TreKing treking...@gmail.com wrote: On Thu, Aug 23, 2012 at 4:59 PM, gabi2i42 gabi_sech...@yahoo.co.uk wrote: I am interested to put the x on the top and 2 on the bottom. Create a

Re: [android-developers] Android Source Cross reference tools

2012-08-24 Thread Justin Anderson
No thanks... Thanks, Justin Anderson MagouyaWare Developer http://sites.google.com/site/magouyaware On Sat, Aug 18, 2012 at 12:43 PM, Jegadeesan M jeg...@gmail.com wrote: please check this link and update us : http://android.grepsrc.com -- You received this message because you are

Re: [android-developers] Location data not consistently available and sometimes gives null data

2012-08-24 Thread Robert Young
If you can do without needing a zipcode and can just work with raw GPS coordinates you could overide public void onGpsStatusChanged(int event). You'll get regular updates while your app is running. On Wed, Aug 22, 2012 at 2:04 PM, Fasih Awan fasiha...@gmail.com wrote: I am trying to get the

[android-developers] Re: Eclipse Indigo or Juno?

2012-08-24 Thread Jason Sesso
I am using Juno also on Linux. Its just that if you are watching videos or whatever, you create projects a little differently but its no biggie. On Friday, August 24, 2012 6:30:51 AM UTC-7, Daz wrote: Thats good to know :-) Its just I don't want to start practising my app development then

[android-developers] Re: Eclipse Indigo or Juno?

2012-08-24 Thread Lew
I use Juno on Mac and it's just fine. The version names are alphabetically ordered, so you must have downloaded Indigo when it was current, and Juno after the site upgraded to the later release. -- Lew On Friday, August 24, 2012 12:17:43 PM UTC-7, Jason Sesso wrote: I am using Juno also

[android-developers] Re: Android automated testing

2012-08-24 Thread Lew
Michael wrote: how u [sic] guys do automated tests for developed apps? When you say developed apps, do you mean ones that others have developed already and you wish to test? Start here: http://developer.android.com/tools/testing/index.html http://code.google.com/p/robotium/

Re: [android-developers] Re: More Than One Spinners

2012-08-24 Thread Sobia Awan
yes exactly... On Fri, Aug 24, 2012 at 9:14 PM, bob b...@coolfone.comze.com wrote: Sounds like you want to create three different SpinnerAdapter classes. On Friday, August 17, 2012 4:02:54 PM UTC-5, S Awan wrote: Hi, i wanna set more than one spinner with different strings and

[android-developers] Re: Eclipse Indigo or Juno?

2012-08-24 Thread Daz
Cheers guys, that's good to know! Will stick with Juno and update my other Mac with Indigo! Thanks for the support :-) -- 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

Re: [android-developers] My widget stop working as of Android 4

2012-08-24 Thread Jonathan S
How about http://www.vogella.com/articles/AndroidWidgets/article.html ? -- 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] Re: Is there a way to control the Android phone or do a automated test using a remote PC?

2012-08-24 Thread Lew
Also monkeyrunner. This stuff is all over the Android developer site. -- Lew On Thursday, August 13, 2009 1:44:01 AM UTC-7, quill wrote: Does that mean I can simulate multitouch events through emulator? On Aug 6, 12:14 pm, Anil Sasidharan anil...@gmail.com wrote: Hi,

Re: [android-developers] Power on phone when external power source becomes available

2012-08-24 Thread Fred Niggle
One quick-but-dirty way would be to have the androids make a notification sound, for example a 100Hz tone (use audacity to generate the sound file), and have an headset lead connected to the arduino input pin so the firmware can simply wait for the tone and connect the charger... Best regards,

Re: [android-developers] How do I write an equation in string format in Android?

2012-08-24 Thread gabi2i42
Hello, Thank you very much for your reply, I was unable to find any emulators also I am new to android development I am not sure if this has to be implement in java? -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this

Re: [android-developers] How do I write an equation in string format in Android?

2012-08-24 Thread gabi2i42
Hello, Thank you for the reply, I may have to write many equations . I have also tried inserting PNGs but unfortunately the size of the app grows exponentially. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group,

Re: [android-developers] How do I write an equation in string format in Android?

2012-08-24 Thread TreKing
On Fri, Aug 24, 2012 at 4:02 PM, gabi2i42 gabi_sech...@yahoo.co.uk wrote: I was unable to find any emulators Huh? also I am new to android development I am not sure if this has to be implement in java? You would create your layout in XML and then write your code to manipulate the layout,

[android-developers] Re: How do I write an equation in string format in Android?

2012-08-24 Thread bob
Why not use a WebView and HTML? On Thursday, August 23, 2012 4:59:57 PM UTC-5, gabi2i42 wrote: Hello, I am creating an Android App and I do not know how to write an equation which will be displayed to the user, an example could be y=x/2. I am interested to put the x on the top and 2 on

Re: [android-developers] How do I write an equation in string format in Android?

2012-08-24 Thread gabi2i42
I have tried to write simple equations but if I want to display more complex equations (with more mathematical expressions lets say) 1+√5 2 The div2/div function that would work HTML does not work in XML or at least when I load the app with the emulator -- You received this message because

Re: [android-developers] Re: How do I write an equation in string format in Android?

2012-08-24 Thread Kristopher Micinski
You can, there's nothing wrong with it, but if you want to display math, there are many options, it mostly depends on what you want.. kris On Fri, Aug 24, 2012 at 5:11 PM, bob b...@coolfone.comze.com wrote: Why not use a WebView and HTML? On Thursday, August 23, 2012 4:59:57 PM UTC-5,

Re: [android-developers] How do I write an equation in string format in Android?

2012-08-24 Thread Kristopher Micinski
http://stackoverflow.com/questions/1784786/mathml-and-java .. kris On Fri, Aug 24, 2012 at 5:13 PM, gabi2i42 gabi_sech...@yahoo.co.uk wrote: I have tried to write simple equations but if I want to display more complex equations (with more mathematical expressions lets say)

[android-developers] Re: How do I write an equation in string format in Android?

2012-08-24 Thread bob
http://latex.codecogs.com/gif.latex?y=\frac{x}{2} You can link to images to like this: http://latex.codecogs.com/gif.latex?y=\frac{x}{2} On Friday, August 24, 2012 4:11:22 PM UTC-5, bob wrote: Why not use a WebView and HTML? On Thursday, August 23, 2012 4:59:57 PM UTC-5, gabi2i42 wrote:

[android-developers] Re: How do I write an equation in string format in Android?

2012-08-24 Thread gabi2i42
Because I will have a series of layouts (new pages) new pages with text and equations, could I make the app to think that it is displaying a webpage, therefore in the string I would be able to use the HTML language -- You received this message because you are subscribed to the Google Groups

Re: [android-developers] How do I write an equation in string format in Android?

2012-08-24 Thread Miguel Morales
I'm not sure if anyone else suggested this. Why don't you just use a web view and use HTML to render the formulas. On Aug 23, 2012 11:50 PM, gabi2i42 gabi_sech...@yahoo.co.uk wrote: Hello, I am creating an Android App and I do not know how to write an equation which will be displayed to the

Re: [android-developers] More Than One Spinners

2012-08-24 Thread Justin Anderson
Well, for one, your row.xml does not use id's properly... You only want to use the plus sign the first time you define the id. After that you don't want the plus sign... So, for example, when you define the id for your image, you should use @+id/image1 After that, everywhere else, you should

Re: [android-developers] MockApplication?

2012-08-24 Thread Justin Anderson
http://en.wikipedia.org/wiki/Mock_object Thanks, Justin Anderson MagouyaWare Developer http://sites.google.com/site/magouyaware On Thu, Aug 16, 2012 at 4:18 PM, bob b...@coolfone.comze.com wrote: What's the point of the class called MockApplication? -- You received this message because

[android-developers] cant remove extra spaces around grid view

2012-08-24 Thread Goutom
Hi I cant remove extra spaces around grid view .I tried every possible cases. GridView android:id=@+id/calendar android:layout_width=240dp android:layout_height=240dp android:layout_margin=-8dp android:adjustViewBounds=true

Re: [android-developers] Need some help with MyFirstApp tutorial.

2012-08-24 Thread Justin Anderson
Intent intent = new Intent(this, DisplayMessageActivity. Well, for one, this isn't valid code... It should be this: Intent intent = new Intent(this, DisplayMessageActivity.class); I have no idea where to put that... It gives me errors, everywhere I tried. As you said, and according to the

[android-developers] Re: cant remove extra spaces around grid view

2012-08-24 Thread Goutom
I am highlighting the extra spaces around gridview in the attached image. On Sat, Aug 25, 2012 at 4:01 AM, Goutom goutom.sust@gmail.com wrote: Hi I cant remove extra spaces around grid view .I tried every possible cases. GridView android:id=@+id/calendar

[android-developers] Re: Getting Listed in Google Play

2012-08-24 Thread bob
You probably need to click Activate this APK or something like that on that second tab. On Thursday, August 23, 2012 8:05:59 PM UTC-5, Jordan Johnson wrote: Hey, I've had my app up on Google Play for over a month now, still not a single download on it :/ I've tried searching the word

[android-developers] Re: Scrolling direction and velocity

2012-08-24 Thread bob
Why not override onTouchEvent for the Activity? Run the data thru a GestureDetector before passing it to the superclass method. On Thursday, July 8, 2010 12:04:56 PM UTC-5, Sandy wrote: Is there an easy to know the direction of scroll (up or down for a vertical list) and the scroll

Re: [android-developers] Server Unauthorized

2012-08-24 Thread Justin Anderson
Fix your server... Thanks, Justin Anderson MagouyaWare Developer http://sites.google.com/site/magouyaware On Wed, Aug 15, 2012 at 2:04 AM, ענבל איטח inbalit...@gmail.com wrote: Hi, I am developing an android app with a server There are .php files on ther server, I am using wamp as my server

[android-developers] Re: Scrolling direction and velocity

2012-08-24 Thread bob
Or call this? setOnScrollListener (AbsListView.OnScrollListener l) On Friday, August 24, 2012 5:11:23 PM UTC-5, bob wrote: Why not override onTouchEvent for the Activity? Run the data thru a GestureDetector before passing it to the superclass method. On Thursday, July 8, 2010 12:04:56

Re: [android-developers] Re: Static vs Dynamic vertex buffers?

2012-08-24 Thread Braindrool
Eh, I believe I know what I'm doing. I've been programming for years. But I have very little experience with 3D and OpenGL in general. On Friday, August 24, 2012 2:46:20 AM UTC-5, Fabien R wrote: On 23/08/2012 23:32, Braindrool wrote: Just a side note that the .obj decoder obviously

Re: [android-developers] Re: Static vs Dynamic vertex buffers?

2012-08-24 Thread Braindrool
Eh, I believe I know what I'm doing. I've been programming for years. But I have very little experience with 3D and OpenGL in general. And a question still remains. How would I get the correct offset for the buffers? I've read plenty of tutorials on how to use the buffer, but they only

Re: [android-developers] How do I write an equation in string format in Android?

2012-08-24 Thread gabi2i42
Thank you all for your suggestions. In the end I have decided to use WebView and HTML to create the desired layout (page) using the code provided in this pages http://www.monocube.com/2011/02/08/android-tutorial-html-file-in-webview/ A good html equation editor that I found is:

[android-developers] Renderscript Allocations without copying data.

2012-08-24 Thread xtrawurst
Hi, is there a method to have a Renderscript Allocation use an existing array of data without the overhead of copying? I'm trying to allocate a java array which gets passed down the JNI to be filled by native code, then, once back in Java, wrap the array in an Allocation and do Renderscript on

Re: [android-developers] Re: App Development for conducting classes

2012-08-24 Thread Lew
TreKing wrote: bob wrote: You will want to download a copy of MOTODEV Studio For what? and buy an Android book. Why? Most information you need is somewhere on developer.android.com and related sites. Not every book is as useful as every other. Do you have a particular book in

Re: [android-developers] How do I write an equation in string format in Android?

2012-08-24 Thread Kristopher Micinski
Just FYI, among academics there has been a better standard (LaTeX) for around 30 years now, :-) kris On Fri, Aug 24, 2012 at 7:14 PM, gabi2i42 gabi_sech...@yahoo.co.uk wrote: Thank you all for your suggestions. In the end I have decided to use WebView and HTML to create the desired layout

Re: [android-developers] How do I write an equation in string format in Android?

2012-08-24 Thread Miguel Morales
yeah but good luck getting latex to render in a view. You might just transform it. On Aug 24, 2012 4:53 PM, Kristopher Micinski krismicin...@gmail.com wrote: Just FYI, among academics there has been a better standard (LaTeX) for around 30 years now, :-) kris On Fri, Aug 24, 2012 at 7:14

Re: [android-developers] How do I write an equation in string format in Android?

2012-08-24 Thread Kristopher Micinski
Yes, and there are libraries to do so, I would really wager... On Aug 24, 2012 8:45 PM, Miguel Morales therevolti...@gmail.com wrote: yeah but good luck getting latex to render in a view. You might just transform it. On Aug 24, 2012 4:53 PM, Kristopher Micinski krismicin...@gmail.com wrote:

[android-developers] Re: Bluetooth client server

2012-08-24 Thread gjs
Hi, See the BlueToothChat sample app in the Android sdk. Regards On Thursday, August 23, 2012 7:05:46 PM UTC+10, Mulia Dhamma wrote: Hello all masters,. do you have the code for bluetooth client server ? example..i have 2 android phone..and when the 1 android phone sending a string then

Re: [android-developers] listview hashmap checkbox

2012-08-24 Thread Justin Anderson
im working on a customized listview(hashmap) I can't think of a scenario where you would want to use a hashmap for a ListView. ListView requires index positions for everything and a hashmap doesn't provide that functionality. the isue is that i can't use the values of some textviews when the

Re: [android-developers] Re: cant remove extra spaces around grid view

2012-08-24 Thread Justin Anderson
Try this: android:listSelector=@null Thanks, Justin Anderson MagouyaWare Developer http://sites.google.com/site/magouyaware On Fri, Aug 24, 2012 at 4:05 PM, Goutom goutom.sust@gmail.com wrote: I am highlighting the extra spaces around gridview in the attached image. On Sat, Aug 25,

Re: [android-developers] Re: cant remove extra spaces around grid view

2012-08-24 Thread Justin Anderson
Or maybe this: http://stackoverflow.com/questions/7705330/gridview-and-excess-space-padding Thanks, Justin Anderson MagouyaWare Developer http://sites.google.com/site/magouyaware On Fri, Aug 24, 2012 at 9:23 PM, Justin Anderson magouyaw...@gmail.comwrote: Try this: android:listSelector=@null

[android-developers] Re: Android button position changes while the screen rotating

2012-08-24 Thread Haris
Thanks** MagouyaWare for your valuable reply On Thursday, 23 August 2012 17:00:42 UTC+5:30, Haris wrote: Hai all I am new in android programming. For my application I am using image button and it successfully installed on the device. But when I rotate the screen all the button

[android-developers] Re: Need some help with MyFirstApp tutorial.

2012-08-24 Thread Juned Khan
Hi Use this code Intent intent = new Intent(your_current_class.this, DisplayMessageActivity.class); startActivity(intent); -- 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] Re: Need some help with MyFirstApp tutorial.

2012-08-24 Thread Jason Sesso
He still hasnt created DisplayMessageActivity.java so it will still error until then. :) On Friday, August 24, 2012 10:28:43 PM UTC-7, Juned Khan wrote: Hi Use this code Intent intent = new Intent(your_current_class.this, DisplayMessageActivity.class); startActivity(intent); --

[android-developers] Re: Need some help with MyFirstApp tutorial.

2012-08-24 Thread Juned Khan
did you defined this class in Androidmanifest.xml file? -- 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] Re: Need some help with MyFirstApp tutorial.

2012-08-24 Thread Juned Khan
it will be better if you show us the logcat Thanks Juned Khan -- 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

<    1   2