[android-developers] mp3 downloader

2013-06-02 Thread Kromosome
ağabey, kullandığınız İngilizcesi anladığını için çok zor, ondan dolayı cevabı alamadıniz. Daha net anlatabilir misiniz? -- -- 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] mp3 downloader

2013-06-02 Thread Kromosome
ağabey, kullandığınız İngilizcesi anladığını için çok zor, ondan dolayı cevabı alamadıniz. Daha net anlatabilir misiniz? -- -- 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] Broadcast Receiver service in a widget

2013-05-28 Thread Kromosome
try start_sticky :) -- -- 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

[android-developers] Re: Dispalying PDF files within a tablet application

2013-05-21 Thread Kromosome
What's wrong with https://github.com/jblough/Android-Pdf-Viewer-Library#readme ? On Sunday, May 12, 2013 1:33:23 AM UTC+10, Simon Giddings wrote: I have seen that this topic has been raised a number of times over the last few years. I am surprised that Google has not thought of adding a

[android-developers] Re: Problem with Notification Service and Progress bar

2011-07-24 Thread Kromosome
Check this resource http://developer.android.com/resources/articles/faster-screen-orientation-change.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

[android-developers] Error Overriding a SuperClass

2011-06-22 Thread Kromosome
I am having to modify some code from another developer's codebase and his coding style is totally different to mine. Take the following for instance, instead of having a single onClick handler for all views, the developer has implemented the onClick function inline for each event. In the Eclipse

[android-developers] Re: Use Gallery to display my app image

2011-04-20 Thread Kromosome
Where exactly are the images? Resources Sd card etc??? On Apr 19, 4:28 pm, Steven Le levuong...@gmail.com wrote: Hi, In my own app, I have bunches of png files: file1.png, file2.png, file3.png. I want to use Gallery to display image in my own directory only. When a user clicks onto the image,

[android-developers] Re: Displaying the Image in the screen center using Canvas

2011-04-20 Thread Kromosome
Check this out: http://developer.android.com/reference/android/widget/LinearLayout.html Look under the XML Attributes heading! On Apr 19, 4:22 pm, Nandagopal T nandagopal.cg...@gmail.com wrote: I am using the canvas to display an image in Android. I want an image to occupy the center of the

[android-developers] Re: Making something happen in an activity from another thread.

2011-04-20 Thread Kromosome
What about: http://en.wikipedia.org/wiki/Observer_pattern On Apr 21, 3:26 am, Tobiah t...@tobiah.org wrote: I know about AsyncTask, and I use it for this in some cases, but I was wondering whether there is another way for a background thread to initiate a call to the UI thread.  In some

[android-developers] Re: Problems in creating an android chat application

2011-04-20 Thread Kromosome
You need to research SharedPreferences due to the Activity Life cycle On Apr 19, 6:32 pm, manish manish...@gmail.com wrote: Hi, I am very new to android development. I am trying to create a chat application, where I have one activity which displays, the list of people and when u click on a

[android-developers] Re: Code Needed.

2011-04-07 Thread Kromosome
Get a clue! On Apr 5, 8:32 pm, Kirti Joshi joshikirti...@gmail.com wrote: hello everyone, i wanna code for same application,  can any one help me ? https://market.android.com/details?id=br.com.android.appointments.ota... Thanks in advance. -- You received this message because you are

[android-developers] Re: Create a list of items on top of an activity running a video

2011-04-07 Thread Kromosome
Depending upon what kind of data is in your list and what you want the selection to do you could use a Dialog: http://developer.android.com/guide/topics/ui/dialogs.html On Apr 7, 4:52 am, DM dalveermar...@gmail.com wrote: Hi, I am not quite sure how to achieve this. The requirement is to

[android-developers] Re: startup application

2011-04-07 Thread Kromosome
Refer here: http://groups.google.com/group/android-developers/browse_thread/thread/112887fbb59f3ee2 On Apr 6, 10:08 pm, आशुतोष हिन्दुस्तानी ashutosh.h...@gmail.com wrote: can i make a autostart or startup application in android. -- Thanks Ashutosh Mohle Software Engineer CS-KNIT-2010 --

[android-developers] Re: Reusing the same external class with 2 different Activities

2011-04-07 Thread Kromosome
You should include some code and the actual error, I can't clearly understand the error you are encountering On Apr 5, 1:54 pm, Digeridoo eugene.ko...@bluescopesteel.com wrote: Hi All, I am trying to reuse an external class in the same package in 2 Activities thus: First.class Manual.class

[android-developers] Re: Thread and ProgressDialog

2011-04-07 Thread Kromosome
Hello, I'm trying to do some work in a thread For starters you're still in the UI thread, your application is not multi threaded, try using a real thread: http://developer.android.com/reference/android/os/AsyncTask.html This will most likely guide you as to when you can update a progress