Re: [android-beginners] How to populate a ViewFlipper child view with a ListView??

2010-08-02 Thread Victoria Busse
; after your app crashes. > > > -- > There are only 10 types of people in the world... > Those who know binary and those who don't. > -- >

[android-beginners] How to populate a ViewFlipper child view with a ListView??

2010-08-02 Thread Victoria
Hi there, I am trying to set up a ViewFlipper that changes a SlidingDrawers content each time a button is pressed. So far every view I set up worked fine, but now I am trying to create a ListView (including single_choice_mode) within a child view of the ViewFlipper, but my attempt only let to a Nu

[android-beginners] How to reuse and include another package?

2010-07-31 Thread Victoria
Hi there, while searching for a vertical SeekBar I found some already existing code. I was wondering if I could reuse an existing package within my java and xml code without having to code it all again? If it is possible to reuse the existing code how could I do that?? Any help would be very welc

Re: [android-beginners] How to populate a ViewStub using different ImageButtons?

2010-07-30 Thread Victoria Busse
desired effect. -- There are only 10 types of people in the world... Those who know binary and those who don't. -- On Fri, Jul 30, 2010 at 3:29 PM, Victoria

[android-beginners] How to populate a ViewStub using different ImageButtons?

2010-07-30 Thread Victoria
Hi there, I am trying to populate a ViewStub with a new view depending on which ImageButton is clicked, but as I just discovered ViewStubs I am not exactly sure how this would work... e.g. can I provide the ViewStub with different inflatedIds and within the onClick event of a Button inflate the V

Re: [android-beginners] Big Issue with running and testing app on phone while still being connected to PC

2010-07-29 Thread Victoria Busse
315): at > com.mobilevideoeditor.moved.EditGalleryView.init_phone_video_grid(EditGalleryView.java:78) > > Line 78 of EditGalleryView.java is throwing an NPE. > > On Tue, Jul 27, 2010 at 5:04 PM, Victoria Busse < > victoriasarabu...@gmail.com> wrote: > >> Hi there, >> >> I have

[android-beginners] Slider Drawer Problem - disappearing slider

2010-07-28 Thread Victoria Busse
Hi there, I am currently working on a video editing view for my app and I wanted to include a sliding drawer with different video editing functions, but I already ran into a problem with the slider itself because when tap it to open, it opens fine, but when I tap it a second time to close it again

[android-beginners] Big Issue with running and testing app on phone while still being connected to PC

2010-07-27 Thread Victoria Busse
Hi there, I have a huge problem testing my app on my HTC Wildfire. It was working fine until recently, but now I always get a force close error when I run or debug a new version of the app. When I try to run the app on the emulator it still works, when I disconnect the phone from the PC, the app

Re: [android-beginners] How to pass on extras to a custom intent?

2010-07-27 Thread Victoria Busse
le in the world... > Those who know binary and those who don't. > -- > > > On Tue, Jul 27, 2010 at 11:18 AM, Victoria Busse < > victoriasarabu...@gmail.com> wrote: > >> I can totally understand t

Re: [android-beginners] How to pass on extras to a custom intent?

2010-07-27 Thread Victoria Busse
questions.html (This link came from > the above link) > > Thanks, > Justin > > > -- > There are only 10 types of people in the world... > Those who know binary and those who don't. > ---

Re: [android-beginners] How to pass on extras to a custom intent?

2010-07-27 Thread Victoria Busse
Nevermind, when I just looked through the code again I found a mistake... sorry for posting this question then, I just thought that I had not at all understood the concept of intents and passing on extras On Tue, Jul 27, 2010 at 5:46 PM, Victoria Busse wrote: > Well, yes, I have looked at t

Re: [android-beginners] How to pass on extras to a custom intent?

2010-07-27 Thread Victoria Busse
who know binary and those who don't. > -- > > > > On Tue, Jul 27, 2010 at 10:14 AM, Victoria wrote: > >> hi there, >> >> I am trying to pass on a videoclip from one activity to another by &

[android-beginners] How to pass on extras to a custom intent?

2010-07-27 Thread Victoria
hi there, I am trying to pass on a videoclip from one activity to another by calling an intent: What I would like to do is to pass on the clicked video (the video's uri) and display it in a videoview within the novel activity. But I am a bit stuck and don't know what I should do... This is what I

Re: [android-beginners] How to open a new Activity in a new "window" (calling a new activity)?

2010-07-22 Thread Victoria Busse
le > though. > > > -- > There are only 10 types of people in the world... > Those who know binary and those who don't. > -- > > > On Thu, Jul 22, 2010 at 3:20 PM,

Re: [android-beginners] How to open a new Activity in a new "window" (calling a new activity)?

2010-07-22 Thread Victoria Busse
> this way. > > > -- > There are only 10 types of people in the world... > Those who know binary and those who don't. > -- > > > On Thu, Jul 22, 2010 at 3:13 PM, Victoria Busse < > victoriasara

Re: [android-beginners] How to open a new Activity in a new "window" (calling a new activity)?

2010-07-22 Thread Victoria Busse
who know binary and those who don't. > ------ > > > On Thu, Jul 22, 2010 at 3:07 PM, Victoria Busse < > victoriasarabu...@gmail.com> wrote: > >> Hi there, >> >> sorry for the following explanation... I just didn't know how t

[android-beginners] How to open a new Activity in a new "window" (calling a new activity)?

2010-07-22 Thread Victoria Busse
Hi there, sorry for the following explanation... I just didn't know how to describe it differently... What I would like to do is when I click a certain button, my app should open a new "window" and loading the selected content into this new window/view. It shouldn't be like e.g. the send intent,

[android-beginners] file:// problem - nothing seems to work

2010-07-21 Thread Victoria
Hi, I got two problems that both seem to be connected to file://... Problem 1: for the past days I have been trying to attach a video to an email...but the application always tells me "Sorry, you cannot add this video to your email" when I try this: Uri uri = Uri.parse("file://" + videocursor.g

[android-beginners] Attaching file to email won't work...

2010-07-20 Thread Victoria
Hi, I am trying really hard to attach files to an email... but so far I didn't manage to get it working, I have tried different things that I found while searching for a solution, but I hadn't any luck so far... If someone could help me out here, please, that would be great :) Thanks in advance

[android-beginners] How to call a clicked item within an intent??

2010-07-19 Thread Victoria
Hi, in my code I am trying to call the last clicked item within an intent. Inside an onClick event, the Uri gets tagged to keep track of the item that was clicked, but I don't know how I can call this uri now from the intent. What I mean is: here I tag the item... vGrid.setOnItemClickListener

[android-beginners] Don't know how to show Video Thumbnails

2010-07-18 Thread Victoria
Hi, I have been trying to display thumbnails of videos that I have stored on the SD card of the emulator. On stackflow someone posted the following code to a similar question of somebody else: int id = **"The Video's ID"** ImageView iv = (ImageView ) convertView.findViewById(R.id.imagePreview);

[android-beginners] How to attach a video to an email...???

2010-07-18 Thread Victoria
Hi everyone, I am working on a Video App, where you can click on a video from the sdcard. This click event opens a menu (I used a options menu) that provides the user with different sharing options, e.g. email, bluetooth etc. This part works fine so far... What I am now trying to do is, when the u

[android-beginners] If and How to get video thumbnails

2010-07-17 Thread Victoria
Hi, I am working on a video app. And I have created a GridView that shall display any video stored on the sdcard. Currently it only displays the name of the video file. I wanted to ask if and how it would be possible instead of showing only the name to also display thumbs (or a frame preview) of t

Re: [android-beginners] Help, please - How to display videos as thumbs?

2010-07-17 Thread Victoria Busse
oogled a little...though I don't know what I should do with it in my code...if someone could help me out here, that would be really really great... Thanks On Sat, Jul 17, 2010 at 11:15 AM, Victoria wrote: > Hi there, > > I am looking for a way to display the videos as thumbnails from m

[android-beginners] Help, please - How to display videos as thumbs?

2010-07-17 Thread Victoria
Hi there, I am looking for a way to display the videos as thumbnails from my sdcard in a GridView. The way I tried doesn't seem to work, they don't show in the emulator...but I have no idea where I have done something wrong. If someone could give me a hand here, that would be great. Thank you very

Re: [android-beginners] The Force Close Error is suddenly back...

2010-07-16 Thread Victoria Busse
you plan on doing. > -- > Kostya Vasilyev -- http://kmansoft.wordpress.com > > 17.07.2010 2:15 пользователь "Victoria Busse" > написал: > > > Okay, I set the breakpoint for getCount(); and this is what I got... > > Moved [Android Application] > DalvikVM[localhost:8

Re: [android-beginners] The Force Close Error is suddenly back...

2010-07-16 Thread Victoria Busse
--- > There are only 10 types of people in the world... > Those who know binary and those who don't. > -- > > > > On Fri, Jul 16, 2010 at 4:15 PM, Victoria Busse < > victoriasarabu...@gmail.com> w

Re: [android-beginners] The Force Close Error is suddenly back...

2010-07-16 Thread Victoria Busse
method] Thread [<13> Binder Thread #2] (Running) Thread [<11> Binder Thread #1] (Running) As I am really new to all this, I don't really have clue what it means... :p On Fri, Jul 16, 2010 at 10:54 PM, Victoria Busse < victoriasarabu...@gmail.com> wrote: > Thanks :) I'll

Re: [android-beginners] The Force Close Error is suddenly back...

2010-07-16 Thread Victoria Busse
Thanks :) I'll check it now... On Fri, Jul 16, 2010 at 10:43 PM, TreKing wrote: > On Fri, Jul 16, 2010 at 4:41 PM, TreKing wrote: > >> http://help.eclipse.org/helios/index.jsp >> > > Stupid Frames: > > http://help.eclipse.org/helios/index.jsp?topic=/org.eclipse.jdt.doc.user/tasks/task-add_line_

Re: [android-beginners] The Force Close Error is suddenly back...

2010-07-16 Thread Victoria Busse
Hey thanks for the fast reply :), I am sorry for the next question but I am really new to all this: how do I set breakpoints?? On Fri, Jul 16, 2010 at 9:58 PM, Kostya Vasilyev wrote: > Victoria, > > The cause of this exception appears in logcat: > > > 07-16 19:40:45.124: ER

[android-beginners] The Force Close Error is suddenly back...

2010-07-16 Thread Victoria
Hi, I am trying to load videos from my emulated sdcard into my implemented GridView, it worked fine before, when I used the GridView example from Google...but now I get a Force close error when I try to open the app. The entire app works (or rather should work) like this a TabView is launched tha

Re: [android-beginners] onItemSelectListener or onItemClickListener, both or none???

2010-07-15 Thread Victoria Busse
10 at 9:30 PM, Victoria Busse > wrote: > > I just did that and at first I thought it was because I forgot to give > the > > activity an intent filter within the manifest.xml, but after I have done > > that now, > > I still got the problem > > I attached the output to

Re: [android-beginners] onItemSelectListener or onItemClickListener, both or none???

2010-07-15 Thread Victoria Busse
R.drawable.sample_4, R.drawable.sample_2, R.drawable.sample_6, R.drawable.sample_3, R.drawable.sample_4, R.drawable.sample_1 }; } } On Fri, Jul 16, 2010 at 1:02 AM, Mark Murphy wrote: > On Thu, Jul 15, 2010 at 7:49 PM, Victoria Busse > wrote: &

Re: [android-beginners] onItemSelectListener or onItemClickListener, both or none???

2010-07-15 Thread Victoria Busse
Okay I see :) Thank you Mark :) I will just stick with onClickItemListener then Then there is only my final question left: is it possible to e.g. choose the Email option in the menu and attach the item, which I used to open the menu with, to an email? If this is possible how would I best do that??

Re: [android-beginners] ContextMenu Problem - how to resolve these menu items

2010-07-15 Thread Victoria Busse
Hey Justin, thanks for the reply, I just solved the problem it was within the xml.file ...instead of android:title="@string/Facebook" I now use android:title="Facebook" and it works perfectly :) On Thu, Jul 15, 2010 at 10:16 PM, Justin Anderson wrote: > I may be wrong but I don't think