[android-beginners] Re: Your feedback on Samples/Tutorials/Articles

2010-05-05 Thread Raul Martinez
it would be awesome if there were video tutorials On Mar 18, 5:38 pm, Megha Joshi mjo...@google.com wrote: Hi everyone, As many of you might have noticed by now, we have added a new Resourceshttp://developer.android.com/resources/index.htmltab under developer.android.com. It contains

[android-beginners] Tabbed UI

2010-05-05 Thread Raul Martinez
i really need help figuring the tab ui tutorial, i dont understand how to make the three activities -- 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

Re: [android-beginners] Tabbed UI

2010-05-06 Thread Raul Martinez
i dont know how to get the 3 activities On Thu, May 6, 2010 at 10:12 AM, TreKing treking...@gmail.com wrote: On Wed, May 5, 2010 at 11:09 PM, Raul Martinez raul5...@gmail.com wrote: i really need help figuring the tab ui tutorial, i dont understand how to make the three activities What

Re: [android-beginners] Tabbed UI

2010-05-06 Thread Raul Martinez
of people in the world... Those who know binary and those who don't. -- On Thu, May 6, 2010 at 10:37 AM, Raul Martinez raul5...@gmail.com wrote: i dont know how to get the 3 activities On Thu, May 6, 2010 at 10:12 AM, TreKing

Re: [android-beginners] apps

2010-06-23 Thread Raul Martinez
What would be awesome if somehow make your SD card into virtual memory Raul Martinez Message sent from HTC EVO 4G On Jun 23, 2010 6:31 PM, ravendev jzimm1...@gmail.com wrote: hi my name is josh i am new to the droid world. i have just rooted my motorola droid. any suggestions on apps good

Re: [android-beginners] apps

2010-06-23 Thread Raul Martinez
What would be awesome if somehow make your SD card into virtual memory Raul Martinez Message sent from HTC EVO 4G On Jun 23, 2010 6:31 PM, ravendev jzimm1...@gmail.com wrote: hi my name is josh i am new to the droid world. i have just rooted my motorola droid. any suggestions on apps good

[android-beginners] SQL

2010-07-10 Thread Raul Martinez
hey, i wanna create an app that connect to a SQL database, but im not to sure how to do it, could some one please make something simple like first name, last name, age table linked to a database, i learn best by studying an example, thanks in advance for any help -- You received this message

[android-beginners]

2010-07-10 Thread Raul Martinez
i have a list view and i want to click one of the items and i want it to open up another list view what should i do to make this happen? -- You received this message because you are subscribed to the Google Groups Android Beginners group. NEW! Try asking and tagging your question on Stack

Re: [android-beginners]

2010-07-10 Thread Raul Martinez
().getStringArray(R.array.Office_array); setListAdapter(new ArrayAdapterString(this, R.layout.list_item, office)); now what? On Sat, Jul 10, 2010 at 12:21 PM, Mark Murphy mmur...@commonsware.comwrote: On Sat, Jul 10, 2010 at 1:14 PM, Raul Martinez raul5...@gmail.com wrote: i have a list

[android-beginners] list

2010-07-10 Thread Raul Martinez
can someone help i have this code: package com.main.Reference; import android.app.ListActivity; import android.os.Bundle; import android.widget.ArrayAdapter; public class Reference extends ListActivity { /** Called when the activity is first created. */ @Override public void

Re: [android-beginners]

2010-07-11 Thread Raul Martinez
. -- There are only 10 types of people in the world... Those who know binary and those who don't. -- On Sat, Jul 10, 2010 at 11:28 AM, Raul Martinez raul5...@gmail.com

[android-beginners]

2010-07-14 Thread Raul Martinez
public class home extends Activity { /** Called when the activity is first created. */ @Override public void onCreate(Bundle icicle) { super.onCreate(icicle); setContentView(R.layout.main); Button word=(Button)findViewById(R.id.button1); } } i have this

Re: [android-beginners]

2010-07-14 Thread Raul Martinez
your resources -- check your console for errors. On Wed, Jul 14, 2010 at 5:29 PM, Raul Martinez raul5...@gmail.com wrote: public class home extends Activity { /** Called when the activity is first created. */ @Override public void onCreate(Bundle icicle

[android-beginners] buttons

2010-07-14 Thread Raul Martinez
i want to replace a button with an image, and i tried doing it through xml with android:src=@drawable/icon but its not working what should i do, or is there another way of replacing a button with an image -- You received this message because you are subscribed to the Google Groups Android

Re: [android-beginners] buttons

2010-07-14 Thread Raul Martinez
PM, Mark Murphy mmur...@commonsware.comwrote: Use ImageButton. On Wed, Jul 14, 2010 at 8:13 PM, Raul Martinez raul5...@gmail.com wrote: i want to replace a button with an image, and i tried doing it through xml with android:src=@drawable/icon but its not working what should i do

Re: [android-beginners] buttons

2010-07-14 Thread Raul Martinez
ok i just have one more question how do i change the color of the background like behind the images, if you know what i mean? not the button but behind them On Wed, Jul 14, 2010 at 8:13 PM, Raul Martinez raul5...@gmail.com wrote: would that get rid of the grey area around the image? On Wed

[android-beginners] intents

2010-07-15 Thread Raul Martinez
i have a question can someone explain the syntax and fields of an Intent, i have this code but the area highlighted in red is underlined in red and says this: No enclosing instance of the type Category is accessible in scope what am i doing wrong? Intent intent = new

Re: [android-beginners] intents

2010-07-15 Thread Raul Martinez
do i have to modify the android manifest file as well to add the activity? On Thu, Jul 15, 2010 at 4:55 PM, Mark Murphy mmur...@commonsware.comwrote: On Thu, Jul 15, 2010 at 5:41 PM, Raul Martinez raul5...@gmail.com wrote: i have a question can someone explain the syntax and fields

Re: [android-beginners] intents

2010-07-15 Thread Raul Martinez
Ok thanks but what do I use instead of MAIN On Jul 15, 2010 5:42 PM, Mark Murphy mmur...@commonsware.com wrote: On Thu, Jul 15, 2010 at 6:05 PM, Raul Martinez raul5...@gmail.com wrote: do i have to modify the... Your Category activity needs to be in the manifest file. Your current activity

Re: [android-beginners] intents

2010-07-15 Thread Raul Martinez
); setContentView(R.layout.category); } } am i doing this right or am i doing it wrong On Thu, Jul 15, 2010 at 6:02 PM, Mark Murphy mmur...@commonsware.comwrote: On Thu, Jul 15, 2010 at 6:57 PM, Raul Martinez raul5...@gmail.com wrote: Ok thanks but what do I use instead of MAIN You do not need

Re: [android-beginners] intents

2010-07-15 Thread Raul Martinez
sorry i thought that was something else, i'll read it right now, thanks for the help, really appreciate it On Thu, Jul 15, 2010 at 7:42 PM, Mark Murphy mmur...@commonsware.comwrote: On Thu, Jul 15, 2010 at 8:31 PM, Raul Martinez raul5...@gmail.com wrote: mark for some reason i keep getting

[android-beginners] SQL and SQLite

2010-07-16 Thread Raul Martinez
Are SQL and SQLite the same thing? If not what's the difference -- 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 http://stackoverflow.com/questions/tagged/android To unsubscribe

[android-beginners] list

2010-07-18 Thread Raul Martinez
i have a list with several items, when i click on one of the items i want it to start another activity but i want it to show the name of the previous item clicked with an image and a description of the item, how would i go with doing that -- You received this message because you are subscribed

[android-beginners] listview dropdown

2010-07-21 Thread Raul Martinez
i have a list and when i click it i want it to open up with a drowdown of the description of the item, is there a tutorial on that? -- 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

Re: [android-beginners] listview dropdown

2010-07-21 Thread Raul Martinez
I tried but I guess I was using the wrong terms, thanks On Jul 22, 2010 12:25 AM, Justin Anderson janderson@gmail.com wrote: I was wrong about my search terms becaues I realized that onclick might be something that only a more seasoned android developer would think of searching. The search

Re: [android-beginners] listview dropdown

2010-07-21 Thread Raul Martinez
* *-- There are only 10 types of people in the world... Those who know binary and those who don't. -- On Wed, Jul 21, 2010 at 10:30 PM, Raul Martinez raul5...@gmail.comwrote: i have a list and when i