[android-beginners] Re: Question about UI Handling

2010-04-24 Thread Zigurd
Look for a simple example to get you started in the SDK: http://developer.android.com/guide/samples/index.html Understand the basics of the Activity class and how you go from one Activity instance to another, which you will find in the first half of this page:

[android-beginners] Re: Question about UI Handling

2010-04-24 Thread Indicator Veritatis
Well, of course the docs will not be clear on that, as YOU are not very clear on it. What is continuous different UI screens moving around with the user input supposed to MEAN? Usually, you want a UI screen to stay in one place while it has focus so that the user CAN enter data. But you seem to

Re: [android-beginners] Re: Question about UI Handling

2010-04-24 Thread Karthik Ravi Shankar
Hi Indicator, I thought what I said was clear. The essence of what I wanted to convey was that there are many UI screens. And there is a navigation possible between these different screens on specific user input e.g. - a button click. I did get my answer as multiple activities and using

[android-beginners] Re: Question About Audio and Sources

2010-04-12 Thread BobG
A search in market for 'volume control' gave a half dozen free apps. Check those out and try to add some feature? -- You received this message because you are subscribed to the Google Groups Android Beginners group. NEW! Try asking and tagging your question on Stack Overflow at

[android-beginners] Re: Question regarding Contact Application [Android SDK 2.1]

2010-04-06 Thread AJ
Any clue please. - AJ On Apr 3, 10:17 pm, AJ ajeet.invinci...@gmail.com wrote: Hi Group, I want to launch Contact application with some fields filled with data I have passed from my application. I am able to pass Name, Phone number and Emails. But the problem is :- 1- I am not able to

[android-beginners] Re: Question about app widgets

2009-10-14 Thread Vapor Trail
Thanks you Mark, It worked. Regards Carl On Wed, Oct 14, 2009 at 8:27 AM, Mark Murphy mmur...@commonsware.comwrote: Carl wrote: I would like to ask if it is possible to put 2 widgets in the same application. In other words, having one project, with one manifest.xml file and making 2

[android-beginners] Re: Question about app widgets

2009-10-13 Thread Mark Murphy
Carl wrote: I would like to ask if it is possible to put 2 widgets in the same application. In other words, having one project, with one manifest.xml file and making 2 different widgets in the the same project. AFAIK, yes. In the case that it is possible, when there is an intent

[android-beginners] Re: Question about the license of the non-free applications

2009-09-21 Thread Kaj Bjurman
Such as? On 21 Sep, 07:15, Chihau Chau chi...@gmail.com wrote: Android is developed under the Apache v2 License but what about of the non-free applications? -- Chihau Chau --~--~-~--~~~---~--~~ You received this message because you are subscribed to the

[android-beginners] Re: Question about adapters

2009-09-21 Thread vorcigernix
I am new as new, but from what I got: this is context. It is this in all examples I saw. What is in parenthesis you will see if you highlight createFromResource in eclipse. R.array.planets is a string array. It can be created like: final String[] branches= new String[] {

[android-beginners] Re: question

2009-09-14 Thread Yusuf Saib (T-Mobile USA)
The attributes are listed here: http://developer.android.com/guide/topics/resources/available-resources.html#layoutresources Color is not a Layout attribute. Yusuf Saib Android ·T· · ·Mobile· stick together The views, opinions and statements in this email are those of the author solely in

[android-beginners] Re: Question Regarding the Background Menu

2009-08-09 Thread Hamed3d
Thank u so much Liviu, I will try it and see if it works.. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Beginners group. To post to this group, send email to android-beginners@googlegroups.com To

[android-beginners] Re: Question Regarding the Background Menu

2009-08-08 Thread Hamed3d
Anyone?I really appreciate any helps. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Beginners group. To post to this group, send email to android-beginners@googlegroups.com To unsubscribe from this group,

[android-beginners] Re: Question about the annoyingly short screen time-out during a call...

2009-07-22 Thread Ed
Looking at PhoneApp.java, this seems to be getting closer: 559 /** 560 * Controls how quickly the screen times out. 561 * 562 * The poke lock controls how long it takes before the screen powers 563 * down, and therefore has no immediate effect when the current 564

[android-beginners] Re: Question

2009-07-20 Thread Yusuf T. Mobile
Oh, that id. So I believe you are referring to the function onListItemClick: protected void onListItemClick(ListView l, View v, int position, long id) Android calls this function when the user clicks on a list item, and sets the id value. Under the hood, when the user clicks on a spot in

[android-beginners] Re: Question

2009-07-20 Thread Jose Ayerdis
yes thanks 2009/7/20 Yusuf T. Mobile yusuf.s...@t-mobile.com Oh, that id. So I believe you are referring to the function onListItemClick: protected void onListItemClick(ListView l, View v, int position, long id) Android calls this function when the user clicks on a list item, and

[android-beginners] Re: Question

2009-07-19 Thread Yusuf T. Mobile
If I understand your question, you are asking how does Android know you want to launch the NoteEdit activity, right? In the code, you see the line Intent i = new Intent(this, NoteEdit.class); and then a few lines below, startActivityForResult(i, ACTIVITY_EDIT); So variable i knows

[android-beginners] Re: Question

2009-07-19 Thread Jose Ayerdis
no how does android know that id is the id of the datarow??? where it is assign. 2009/7/19 Yusuf T. Mobile yusuf.s...@t-mobile.com If I understand your question, you are asking how does Android know you want to launch the NoteEdit activity, right? In the code, you see the line

[android-beginners] Re: Question about requestLocationUpdates()

2009-05-27 Thread Mark Murphy
1. After making this call, does it actually wait for the location provider(gps in the above example) to complete the location update THEN call the listener you give it? In other words, if I'm in my locationListener() because the above call sent us there, will the information be current?

[android-beginners] Re: Question about building Android 1.5 source for emulator

2009-05-04 Thread Mark Murphy
alexbttf wrote: I just had a quick question, haven't been able to find any answers elsewhere. Figured I'd ask it here. I Was wondering if it's possible to build the Android source so that the resulting Android Emulator disk images contains all of the apps of a normal Android 1.5 system?

[android-beginners] Re: Question about onSensorChanged Listener

2009-03-17 Thread Jordan Frank
Hi, I can only speak to question 2, but it seems like you'd want to also listen for the SENSOR_ACCELEROMETER data, and then look for values that are above a certain threshold, maybe something like: if (sensor == SensorManager.SENSOR_ACCELEROMETER) { float accel_mag =

[android-beginners] Re: Question regarding linearlayout

2009-03-12 Thread Dat Nguyen
Why not trying RelativeLayout?You may use android:layout_toRightOf: @id/textf for the button. Dat Nguyen. On Tue, Mar 10, 2009 at 11:26 PM, striverwang striverw...@gmail.com wrote: hi,all: I have a question regarding linearlayout(maybe other layout types) __ |

[android-beginners] Re: Question regarding linearlayout

2009-03-11 Thread Romain Guy
Give your button a width of wrap_content, your text field a width of 0dip and a weight of 1. On Tue, Mar 10, 2009 at 10:26 PM, striverwang striverw...@gmail.com wrote: hi,all: I have a question regarding linearlayout(maybe other layout types) __ |       textf            

[android-beginners] Re: question about bluetooth

2008-12-29 Thread Mark Murphy
Guan wrote: Hi! I have developed a monitor device with bluetooth interface, can i transmit the data from my monitor to GPhone by bluetooth? Does the android sdk support bluetooth? The SDK does not. For more information as to why that is, see:

[android-beginners] Re: Question about the int bundle

2008-12-28 Thread Zi Yong Chua
Thank you! On Dec 27, 8:19 pm, Mark Murphy mmur...@commonsware.com wrote: On Dec 25, 11:44 am, Zi Yong Chua chu...@gmail.com wrote: Sorry I am noob here and learning about the basics about android.. May I know what is the differences between the bundles? I search around and there is not

[android-beginners] Re: Question about the int bundle

2008-12-27 Thread Mark Murphy
On Dec 25, 11:44 am, Zi Yong Chua chu...@gmail.com wrote: Sorry I am noob here and learning about the basics about android.. May I know what is the differences between the bundles? I search around and there is not much comments on the bundles as far as I can find... public void

[android-beginners] Re: Question about the int bundle

2008-12-26 Thread Zi Yong Chua
Anyone? On Dec 25, 11:44 am, Zi Yong Chua chu...@gmail.com wrote: Sorry I am noob here and learning about the basics about android.. May I know what is the differences between the bundles? I search around and there is not much comments on the bundles as far as I can find... public void

[android-beginners] Re: question about layout.xml and View class

2008-11-07 Thread Mark Murphy
Brian wrote: Why are the various TextViews and buttons not visible? Because you gave the whole screen to BoardView: com.my.package.BoardView android:id=@+id/board android:layout_width=fill_parent android:layout_height=fill_parent/ Android takes one pass through the

[android-beginners] Re: Question about using webkit

2008-11-07 Thread anderson
i have no idea about how to debug the js code in the asset folder since alert() is not work @@ On 10月25日, 上午8時53分, hao [EMAIL PROTECTED] wrote: hey guys, im wondering how well does android handlejavascript. Im thinking of develop a web application for the android device. Can it load a

[android-beginners] Re: question about layout.xml and View class

2008-11-07 Thread Mark Murphy
Brian wrote: So how is the LunarLander Text being displayed? Dunno. I haven't looked at the source code to a lunar lander game in about two decades. Heck, I even had *hair* back then. Does it have anything to do with the enclosing Layouts, the FrameLayout as the parent of LunarView and

[android-beginners] Re: question about build android

2008-11-04 Thread David Turner
you need to install Sun's JDK, gcj is not supported On Tue, Nov 4, 2008 at 10:43 AM, hunter [EMAIL PROTECTED] wrote: Hi, all: I try to build android on my linux, but failed with following errors: build/core/product_config.mk:229: WARNING: adding test OTA key host C: acp =

[android-beginners] Re: question about build android

2008-11-04 Thread tagore
You might use sun-jdk6, aren't you? To solve this problem, you can install a sun-jdk5-update15: Under ubuntu: sudo apt-get install sun-java5-sdk Tagore On Nov 5, 1:11 am, David Turner [EMAIL PROTECTED] wrote: you need to install Sun's JDK, gcj is not supported On Tue, Nov 4, 2008 at 10:43

[android-beginners] Re: question about build android (2)

2008-11-04 Thread Mark Murphy
hunter wrote: Hi, all: I tried to build android, but met following errors: == host C++: libutils = frameworks/base/libs/utils/Threads.cpp frameworks/base/libs/utils/Threads.cpp: In static member function

[android-beginners] Re: question about build android (2)

2008-11-04 Thread hunter
Thanks, I will post to that group. On 11月5日, 上午10时37分, Mark Murphy [EMAIL PROTECTED] wrote: hunter wrote: Hi, all: I tried to build android, but met following errors: == host C++: libutils =

[android-beginners] Re: question...

2008-10-22 Thread Curtis Vaughan
I have an N770. I know that no one has ported Android to it. But as I understand, someone has been able to get Android up and running on an N800. Do a Google search and check out the Mailing Groups at Maemo.org --~--~-~--~~~---~--~~ You received this message

[android-beginners] Re: question on getSelectedItemId function

2008-05-15 Thread Alan
thank you for reply! :-) If I change the _id that is default field's name to other, the program will throw an exception It means that I must have a field named _id in the data table, is right? can I change the name of id field? Ahmed Abdel samea wrote: I will tell you in the create new note

[android-beginners] Re: question on getSelectedItemId function

2008-05-12 Thread Ahmed Abdel samea
I will tell you in the create new note the id field in database take th rowid in the listview as its id ok so when i delete all what i need is that id so i retrieve it from the listview as i said before the rowid is the id in the database Hope i have answered ur question Yours, --( H o H i