Re: [android-developers] FFT algorithm

2014-04-25 Thread Jadranko Bodiroga
xexexexexe..TreKing Rules :)


On Tue, Apr 22, 2014 at 12:44 PM, Piren gpi...@gmail.com wrote:

 Haven't checked this group for a while, good to see you're still here :)

 On Tuesday, April 22, 2014 1:59:03 AM UTC+3, TreKing wrote:


 On Mon, Apr 21, 2014 at 1:12 PM, Mahmoud Mortada mody.m...@gmail.comwrote:

 I want an algorithm to analyze sounds working on android.

 Cool. I want a unicorn that shits gold and farts rainbows.

 
 -
 TreKing http://sites.google.com/site/rezmobileapps/treking - Chicago
 transit tracking app for Android-powered devices

  --
 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
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en
 ---
 You received this message because you are subscribed to the Google Groups
 Android Developers group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to android-developers+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/d/optout.


-- 
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
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
Android Developers group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [android-developers] PDF files search utility

2014-01-21 Thread Jadranko Bodiroga
you can find on internet lot of tools for smart search in windows with
previews...most of them are free...but if you want to pay,i am intrerested
to create some software :)


On Mon, Jan 20, 2014 at 6:15 PM, olegkon oleg...@gmail.com wrote:

 Hi,

 I am an IT, have 1000s of books (most in PDF) on my Android 4 tablet.
 I often need info inside these books, search inside them (without opening
 them),
 sometimes advance search (like term1  term2 on one page).

 It would be better if I can see some preview of results (with a few lines
 to get a context).

 Is there any such utility on Android?
 (or on Windows ?  I use regular search in files in TextPad,
 but it often misses to search binaries like PDFs)


 Better free, but if it satisfy my need, will pay a bit too.  :-)


 TIA,
 Oleg.


 --
 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
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en
 ---
 You received this message because you are subscribed to the Google Groups
 Android Developers group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to android-developers+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/groups/opt_out.


-- 
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
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
Android Developers group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: [android-developers] PDF files search utility

2014-01-21 Thread Jadranko Bodiroga
Try in Csharp to find some code to do it..example:

PdfDocument doc = new PdfDocument(file.pdf);string textToSearch =
some text;for (int i = 0; i  doc.Pages.Count; i++){
string pageText = doc.Pages[i].GetText();
int count = 0;
int lastStartIndex = pageText.IndexOf(textToSearch, 0,
StringComparison.CurrentCultureIgnoreCase);
while (lastStartIndex != -1)
{
count++;
lastStartIndex = pageText.IndexOf(textToSearch, lastStartIndex
+ 1, StringComparison.CurrentCultureIgnoreCase);
}

if (count != 0)
Console.WriteLine(Page {0}: '{1}' found {2} times, i,
textToSearch, count);}



On Tue, Jan 21, 2014 at 12:49 PM, Jadranko Bodiroga 
jadrankobodiroga1...@gmail.com wrote:

 you can find on internet lot of tools for smart search in windows with
 previews...most of them are free...but if you want to pay,i am intrerested
 to create some software :)


 On Mon, Jan 20, 2014 at 6:15 PM, olegkon oleg...@gmail.com wrote:

 Hi,

 I am an IT, have 1000s of books (most in PDF) on my Android 4 tablet.
 I often need info inside these books, search inside them (without opening
 them),
 sometimes advance search (like term1  term2 on one page).

 It would be better if I can see some preview of results (with a few lines
 to get a context).

 Is there any such utility on Android?
 (or on Windows ?  I use regular search in files in TextPad,
 but it often misses to search binaries like PDFs)


 Better free, but if it satisfy my need, will pay a bit too.  :-)


 TIA,
 Oleg.


 --
 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
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en
 ---
 You received this message because you are subscribed to the Google Groups
 Android Developers group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to android-developers+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/groups/opt_out.




-- 
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
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
Android Developers group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: [android-developers] how to create button with one image background and one image inside and text

2013-10-03 Thread Jadranko Bodiroga
Piren.True=Visible ;   :)


On Thu, Oct 3, 2013 at 9:15 AM, Piren gpi...@gmail.com wrote:

 are you kidding me? well excuse me, i didnt know that you're such a
 serious developer that you must never ever learn something new, obviously,
 you've finished the learning phase.

 Who the hell would hire you when you can't even make a button? and not
 only you can't make a simple button, instead of trying to learn how to do
 it, you're trying to make other people do the work for you?
 Even developers with 20 years of experience would still need to read the
 damn manual and do tutorials when they study a new language\framework.. do
 your due diligence and then you wouldn't have to publicly show how little
 you know.

 Anyhow, you being such an awesome developer who is no longer a student and
 now only develops (without studying of course), is more than qualified to
 handle this very complex problem of making a button with text on it on your
 own.


 On Wednesday, October 2, 2013 8:01:53 PM UTC+3, Amit Mangal wrote:

 U r not understanding problem again.
 I m not a student i am a developer if i will study company will hire some
 one else to work. I have to work i completed my study long before now i do
 development.
 Thanks
 On 02-Oct-2013 12:31 PM, Piren gpi...@gmail.com wrote:

 i'm saying that you should read the documentation and actually do the
 plethora of tutorials available on Android Developers before you go on a
 forum and ask other people for help.

 On Tuesday, October 1, 2013 9:45:43 PM UTC+3, Amit Mangal wrote:

 what are you saying i am unable to understand ? can you please explain ?

 thanks


 On Tue, Oct 1, 2013 at 2:36 PM, Piren gpi...@gmail.com wrote:

 it's actually a wee bit more complex (and by complex i mean - still in
 the realm of a developer that started android development 3 days ago), if
 you want a proper red background for the number... but this question is so
 basic he should try to figure it out on his own.

 On Tuesday, October 1, 2013 12:47:54 AM UTC+3, TreKing wrote:


 On Sun, Sep 29, 2013 at 3:19 PM, Amit Mangal 
 forum.am...@gmail.comwrote:

 i have attached the sample picture any idea how to create that .
 i want to add text inside button image dynamically .


 That's just a TextView with a custom, stretchable background. Look up
 PNG9.

 --**--***
 ***--**---
 TreKing http://sites.google.com/site/rezmobileapps/treking -
 Chicago transit tracking app for Android-powered devices

  --
 You received this message because you are subscribed to the Google
 Groups Android Developers group.
 To post to this group, send email to android-d...@**googlegroups.com
 To unsubscribe from this group, send email to
 android-developers+**unsubscribe**@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/**group**/android-developers?hl=enhttp://groups.google.com/group/android-developers?hl=en
 ---
 You received this message because you are subscribed to the Google
 Groups Android Developers group.
 To unsubscribe from this group and stop receiving emails from it, send
 an email to android-developers+**unsubscribe**@googlegroups.com.
 For more options, visit 
 https://groups.google.com/**grou**ps/opt_outhttps://groups.google.com/groups/opt_out
 .


  --
 You received this message because you are subscribed to the Google
 Groups Android Developers group.
 To post to this group, send email to android-d...@**googlegroups.com
 To unsubscribe from this group, send email to
 android-developers+**unsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/**group/android-developers?hl=enhttp://groups.google.com/group/android-developers?hl=en
 ---
 You received this message because you are subscribed to the Google
 Groups Android Developers group.
 To unsubscribe from this group and stop receiving emails from it, send
 an email to android-developers+**unsubscr...@googlegroups.com.
 For more options, visit 
 https://groups.google.com/**groups/opt_outhttps://groups.google.com/groups/opt_out
 .

  --
 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
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en
 ---
 You received this message because you are subscribed to the Google Groups
 Android Developers group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to android-developers+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/groups/opt_out.


-- 
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 

Re: [android-developers] Detecting hardware button on Android mobile

2013-09-02 Thread Jadranko Bodiroga
try replace this : KEYCODE_CALL


On Fri, Aug 30, 2013 at 11:53 PM, Ash anan...@gmail.com wrote:

 The code you have given is to detect the Power button. I want to detect
 the PTT (push-to-talk) button.


 On Friday, 30 August 2013 23:01:01 UTC+10, baturanija1 wrote:

 add permission : uses-permission android:name=android.**
 permission.PREVENT_POWER_KEY /


 On Fri, Aug 30, 2013 at 3:00 PM, Jadranko Bodiroga jadrankobo...@gmail.*
 *com wrote:

 something like this maybe:  if (event.getKeyCode() == KeyEvent.
 KEYCODE_POWER) {}



 On Fri, Aug 30, 2013 at 1:06 PM, Ash ana...@gmail.com wrote:

 Hi All,

 I have a mobile phone from Runbo (http://www.runboruggedphones.**
 com/shop/buy-runbo-x5-ip67-**rugged-waterproof-smartphone.**htmlhttp://www.runboruggedphones.com/shop/buy-runbo-x5-ip67-rugged-waterproof-smartphone.html
 ).

 It has a 3 additional buttons which I have not seen on normal Android
 phones. These are PTT, SOS and ET.

 I was able to detect the SOS and ET button using the following
 functions:
 public void onKeyUp(...)
 and
 public void onKeyDown(...)

 The keycode values for SOS and ET were very high in the range. ET was
 set to 300 and SOS was 301. But that does not matter as long as I can
 detect them.

 However I am not able to detect the PTT button press.

 Has anyone got any ideas on how to detect when the PTT button is
 pressed?

 Any advice or help will be much appreciated.

 Thanks
 Ash

  --
 You received this message because you are subscribed to the Google
 Groups Android Developers group.
 To post to this group, send email to android-d...@**googlegroups.com

 To unsubscribe from this group, send email to
 android-developers+**unsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/**group/android-developers?hl=enhttp://groups.google.com/group/android-developers?hl=en
 ---
 You received this message because you are subscribed to the Google
 Groups Android Developers group.
 To unsubscribe from this group and stop receiving emails from it, send
 an email to android-developers+**unsubscr...@googlegroups.com.
 For more options, visit 
 https://groups.google.com/**groups/opt_outhttps://groups.google.com/groups/opt_out
 .



  --
 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
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en
 ---
 You received this message because you are subscribed to the Google Groups
 Android Developers group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to android-developers+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/groups/opt_out.


-- 
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
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
Android Developers group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: [android-developers] Detecting hardware button on Android mobile

2013-08-30 Thread Jadranko Bodiroga
something like this maybe:  if (event.getKeyCode() == KeyEvent.KEYCODE_POWER
) {}



On Fri, Aug 30, 2013 at 1:06 PM, Ash anan...@gmail.com wrote:

 Hi All,

 I have a mobile phone from Runbo (
 http://www.runboruggedphones.com/shop/buy-runbo-x5-ip67-rugged-waterproof-smartphone.html
 ).

 It has a 3 additional buttons which I have not seen on normal Android
 phones. These are PTT, SOS and ET.

 I was able to detect the SOS and ET button using the following functions:
 public void onKeyUp(...)
 and
 public void onKeyDown(...)

 The keycode values for SOS and ET were very high in the range. ET was set
 to 300 and SOS was 301. But that does not matter as long as I can detect
 them.

 However I am not able to detect the PTT button press.

 Has anyone got any ideas on how to detect when the PTT button is pressed?

 Any advice or help will be much appreciated.

 Thanks
 Ash

  --
 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
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en
 ---
 You received this message because you are subscribed to the Google Groups
 Android Developers group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to android-developers+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/groups/opt_out.


-- 
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
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
Android Developers group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: [android-developers] Detecting hardware button on Android mobile

2013-08-30 Thread Jadranko Bodiroga
add permission : uses-permission android:name=
android.permission.PREVENT_POWER_KEY /


On Fri, Aug 30, 2013 at 3:00 PM, Jadranko Bodiroga 
jadrankobodiroga1...@gmail.com wrote:

 something like this maybe:  if (event.getKeyCode() == KeyEvent.
 KEYCODE_POWER) {}



 On Fri, Aug 30, 2013 at 1:06 PM, Ash anan...@gmail.com wrote:

 Hi All,

 I have a mobile phone from Runbo (
 http://www.runboruggedphones.com/shop/buy-runbo-x5-ip67-rugged-waterproof-smartphone.html
 ).

 It has a 3 additional buttons which I have not seen on normal Android
 phones. These are PTT, SOS and ET.

 I was able to detect the SOS and ET button using the following functions:
 public void onKeyUp(...)
 and
 public void onKeyDown(...)

 The keycode values for SOS and ET were very high in the range. ET was set
 to 300 and SOS was 301. But that does not matter as long as I can detect
 them.

 However I am not able to detect the PTT button press.

 Has anyone got any ideas on how to detect when the PTT button is pressed?

 Any advice or help will be much appreciated.

 Thanks
 Ash

  --
 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
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en
 ---
 You received this message because you are subscribed to the Google Groups
 Android Developers group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to android-developers+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/groups/opt_out.




-- 
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
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
Android Developers group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: [android-developers] Video in portrait mode

2013-08-30 Thread Jadranko Bodiroga
maybe try add something like this : super.setRequestedOrientation(
ActivityInfo.SCREEN_ORIENTATION_PORTRAIT) ...then you force it to show in
portal/Landscape...


On Fri, Aug 30, 2013 at 4:58 AM, Sadhna Upadhyay
sadhna.braah...@gmail.comwrote:

 Hi guys,
 i am recording video and playing it but the problem is that it is
 not playing in portrait mode tough it is recording in portrait but when i
 play video it play in landscape only please help me if any one have any
 idea about it.





 Thanks
 sadhna

 --
 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
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en
 ---
 You received this message because you are subscribed to the Google Groups
 Android Developers group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to android-developers+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/groups/opt_out.


-- 
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
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
Android Developers group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: [android-developers] Re: Generate Barcode Image

2013-06-20 Thread Jadranko Bodiroga
i did not generate BarCode for android,but when i generete in some other
language,i just sent text with code to TextBox,and import EANCODE  13 Font
in that textBox.And it shown code like you show on picture...SO try like
that-Just send code on textBox,and try importing that font on your
project...Sorry ,becouse i do not have code to send-i just try to help
teoreticly :)

-- 
-- 
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
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
Android Developers group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




Re: [android-developers] Camera rotation portrait but playing in landscape.

2013-04-30 Thread Jadranko Bodiroga
Probaj ovo: (try this :)

super.setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);

S.P.


On Mon, Apr 29, 2013 at 10:00 PM, Ivan Stamenkovic peacemaker@gmail.com
 wrote:

 I tried, i searched but nothing works. I have this code preparing the
 camera:

 http://paste.laravel.com/pP1

 and there is myCamera.setDisplayOrientation(90);

 But when i playback the video it's in landscape. Is there any way to
 change this or to rotate videoview

 --
 --
 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
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en
 ---
 You received this message because you are subscribed to the Google Groups
 Android Developers group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to android-developers+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/groups/opt_out.




-- 
-- 
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
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
Android Developers group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




Re: [android-developers] Re: How do I open the SDK emulator?

2013-04-24 Thread Jadranko Bodiroga
do you have installed Java on mashine...i had a same problem and it has
fixed when i changed and add on  PATH on enviroment Variables on system
propetties :

;C:\Program Files\Java\jdk1.6.0_27\bin;    offcourse, you have to map
folder that you installed yout JAVA.


On Wed, Apr 24, 2013 at 4:05 AM, Lew lewbl...@gmail.com wrote:

 Anthony Vescio wrote:

 Hey guys I  downloaded the SDK thing from here
 http://developer.android.com/**sdk/index.htmlhttp://developer.android.com/sdk/index.htmlbecause
  I wanted to test the emulator. The folder is on my desktop, I got
 into it, go into tools, there's emulator there there's emulatr x86 but when
 I click on them, a very quick box, a command prompt like box appears and
 nothing.
 How do I get this to open??


 Have you read and followed the FM?
 http://developer.android.com/tools/devices/emulator.html

 (It only takes one question mark to indicate an interrogative.)

 You talk about desktop and go into but you don't say which OS you're
 using. I assume by go into you mean open the directory in some sort of
 file explorer window.

 How are you passing the necessary options to the emulator program?

 --
 Lew


 --
 --
 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
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en
 ---
 You received this message because you are subscribed to the Google Groups
 Android Developers group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to android-developers+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/groups/opt_out.




-- 
-- 
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
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
Android Developers group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




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

2012-08-23 Thread Jadranko Bodiroga
i suggest that to use one orientation of screen: try this code-it shows
your app only in Portal orientation-but it is optional for your taste :)

super.setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);

-- 
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
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: [android-developers] Please help

2012-07-30 Thread Jadranko Bodiroga
maybee you need some permissions in ManifestWhat you app is doing?

-- 
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
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: [android-developers] Re: Galaxy S3 - Cant write to external storage

2012-07-24 Thread Jadranko Bodiroga
add permission on user ,and it will workPermission on Write External
Storage...Post error if it continue

-- 
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
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: [android-developers] Align ListView to the right

2012-07-24 Thread Jadranko Bodiroga
try tu put :

android:layout_marginLeft=300dp


I think that will help

-- 
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
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: [android-developers] Re: Starting out with Android development

2012-07-24 Thread Jadranko Bodiroga
Try this

Code for GPS location to injput in Google Map

startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse(geo:45,-110)));

45-latitude/110-longitude...

-- 
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
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: [android-developers] how to put multiple linear layout and button in scrollview

2012-07-24 Thread Jadranko Bodiroga
Very goog tutorial to start-:   http://www.youtube.com/watch?v=Rmj_5M_xYeg

whatch all lesons of this gye, and i think it will help you :)

-- 
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
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: [android-developers] GooglePlayStore

2012-07-04 Thread Jadranko Bodiroga
then nothing.. i am a poor..

-- 
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
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: [android-developers] want to install a software .exe from my Android App

2012-05-30 Thread jadranko bodiroga
Aplication do not have extension .exe, has .apk , so only that can be
installed.But first you have to give permission on your phone to install
application  which are not from Market. You can put you application
anywhere on Phone, and find some program on Market who can reach that file
(exampe: OI File manager) and start it instalation..

-- 
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
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: [android-developers] Re: reduce size of a screen

2012-05-28 Thread jadranko bodiroga
..i found on internet that i can define this  in Android manifest,is it
gona help?:

 supports-screens
android:resizeable=true
android:smallScreens=true
android:normalScreens=true
android:largeScreens=true
android:anyDensity=true/

-- 
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
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: [android-developers] Re: reduce size of a screen

2012-05-27 Thread jadranko bodiroga
Any code ,as an example?

On May 27, 2012 9:42 AM, RichardC richard.crit...@googlemail.com wrote:

 http://developer.android.com/guide/practices/screens_support.html


 On Sunday, May 27, 2012 8:31:01 AM UTC+1, baturanija1 wrote:

 Hej people,i am making an application wich screen has a good dimension
 for my phone-HTC DESIRE .there are othes phones who has smaller or
 bigger screen...so i am asking is there an option to makk app to
 automaticly reduce a size of a screen for all size of telefon screen?
 Thanks for reading :)

  --
 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
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en

-- 
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
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: [android-developers] back arrow

2012-05-23 Thread jadranko bodiroga
thanks,man.I will try that later..Seems that will work.I will response
tonight did i success to make.Thanks to share

-- 
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
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: [android-developers] back arrow

2012-05-23 Thread jadranko bodiroga
i made app.thanks Jason

-- 
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
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

[android-developers] Re: MOUNT/UNMOUNT SDC

2012-05-23 Thread jadranko bodiroga
for everyoone to know how to refresh all multimedia on Android :just put it
on activity:

sendBroadcast(new Intent(Intent.ACTION_MEDIA_MOUNTED,
Uri.parse(file://+ Environment.getExternalStorageDirectory(;

if yoiu put picture on SDC IT WILL APIER ON aLBUM AUTOMATICLY...

-- 
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
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: [android-developers] back arrow

2012-05-22 Thread jadranko bodiroga
In my app a make button which is function to open item which has been open
before that-back button...but i whant to implement that function in button
on android phone...button looks like arrow...

On May 22, 2012 2:56 PM, Justin Anderson magouyaw...@gmail.com wrote:

 Care to be a little more clear? Your question doesn't make sense...
 On May 21, 2012 11:05 PM, baturanija1 jadrankobodiroga1...@gmail.com
 wrote:

 hey people,How can i define back arrow button ,to go back to the
 previos item?thanks for sharing :-)

 --
 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
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en

  --
 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
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en

-- 
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
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

[android-developers] Re: MOUNT/UNMOUNT SDC

2012-05-18 Thread jadranko bodiroga
Is there chanse to refresh all multimedia i on SDC?

On May 15, 2012 10:01 PM, baturanija1 jadrankobodiroga1...@gmail.com
wrote:

 Hey people,any command to mount/unmount SDC .or link to help.. thanks
 for sharing

-- 
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
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: [android-developers] refresh gallery

2012-05-11 Thread jadranko bodiroga
Sorry,but this did not helped me...i do not have created galleries...i just
changed locatio of my picture,from app to some folder on SDC ,and thay
pictur not show in new location-i have to umnount and again mount to see
new picture

On May 11, 2012 5:05 PM, Jason Teagle teagle.ja...@gmail.com wrote:

 How to change that-to refresh
 SDK,to show automaticly picturs without unmounting...thank for share


 ('SD card', not 'SDK' - the SDK is what you're using to write code {:v) )

 Try this link:
 http://androidforums.com/**droid-support-troubleshooting/**
 21652-refresh-gallery.htmlhttp://androidforums.com/droid-support-troubleshooting/21652-refresh-gallery.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.comandroid-developers@googlegroups.com
 To unsubscribe from this group, send email to
 android-developers+**unsubscr...@googlegroups.comandroid-developers%2bunsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/**group/android-developers?hl=enhttp://groups.google.com/group/android-developers?hl=en

-- 
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
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: [android-developers] keyboard

2012-05-03 Thread jadranko bodiroga
I can not type...is it metter how letter looks like? Is it even posible to
make keyboard on mine custom language?

On May 3, 2012 8:36 AM, Ibrahim Sada ibrahim.in...@gmail.com wrote:

 wts the new letter?if yua interested then share with us

 On 3 May 2012 02:19, jadranko bodiroga jadrankobodiroga1...@gmail.comwrote:

 beleve or not, in my country our govenment invent new letters...Some
 politicians stuff...boring..But i would like to make these letters on new
 custom keyboard...

 --
 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
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en


  --
 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
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en

-- 
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
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: [android-developers] Re: Do I need license for print screen from google maps (earth) ?

2012-05-02 Thread jadranko bodiroga
Mislim da ti netreba

-- 
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
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: [android-developers] keyboard

2012-05-02 Thread jadranko bodiroga
beleve or not, in my country our govenment invent new letters...Some
politicians stuff...boring..But i would like to make these letters on new
custom keyboard...

-- 
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
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

[android-developers] Re: Mount SDK

2012-05-01 Thread jadranko bodiroga
Any idea?

On May 1, 2012 1:00 AM, baturanija1 jadrankobodiroga1...@gmail.com
wrote:

 HEY people, is there an option that i can mount\unmount SDK card to
 input in my app? Thanks for helping

-- 
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
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: [android-developers] public variables

2012-04-30 Thread jadranko bodiroga
ok..i have other question...i make code

if (AppSettings.playSounds)
{
play.mp.start();   //play is a  another class which i what to start
music what i input in play-class
}



import android.app.Activity;
import android.content.Context;
import android.media.MediaPlayer;
import android.os.Bundle;
import android.view.View;

public class play extends Activity{

public static Context context;
public static MediaPlayer mp=MediaPlayer.create(context,
R.drawable.klik);

}


and shows an error..I can not recognize errorfrom logcat...What iam doing
wrong?

-- 
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
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: [android-developers] Set Ringtone

2012-04-26 Thread jadranko bodiroga
Thanks people,i succes in setting ringtone... thanks for sharing ideas

On Apr 24, 2012 8:07 PM, Justin Anderson magouyaw...@gmail.com wrote:

 You may also want to use the assets folder:

 https://www.google.com/search?btnG=1pws=0q=android+move+file+from+assets+to+phone

 Thanks,
 Justin Anderson
 MagouyaWare Developer
 http://sites.google.com/site/magouyaware


 On Tue, Apr 24, 2012 at 11:56 AM, jadranko bodiroga 
 jadrankobodiroga1...@gmail.com wrote:

 THANKS MAN..I WILL TRY THAT TO IMPORT TO MY APP..if i manage i will share
 code...

 On Apr 24, 2012 7:53 PM, Kristopher Micinski krismicin...@gmail.com
 wrote:

 Did you try googling access file from resources android?

 This comes up:


 http://stackoverflow.com/questions/4081763/access-resource-files-in-android

 kris

 On Tue, Apr 24, 2012 at 1:34 PM, jadranko bodiroga
 jadrankobodiroga1...@gmail.com wrote:
  How to do that...give me some example...
 
  On Apr 24, 2012 6:18 PM, Kristopher Micinski krismicin...@gmail.com
 
  wrote:
 
  What are you even talking about...?
 
  You can take the file out of shared resources and store it in storage,
  distributing the app with the file in resources..
 
  Kris
 
  On Tue, Apr 24, 2012 at 11:48 AM, jadranko bodiroga
  jadrankobodiroga1...@gmail.com wrote:
   But if i whant to send my app to friend ,i have to copy him that
 song
   too on
   specific location,is it? Than i can not share my app to
 others,becouse
   app
   will not find song...that is a reason i whant to import song into my
   activity...
  
   On Apr 24, 2012 5:10 PM, Kristopher Micinski 
 krismicin...@gmail.com
   wrote:
  
   So take your file, put it somewhere in storage, and then set the
 URI
   appropriately.
  
   Kris
  
   On Tue, Apr 24, 2012 at 10:40 AM, jadranko bodiroga
   jadrankobodiroga1...@gmail.com wrote:
Tried solutins and ideas in a link you sent...in the both
 solutios
thay
are
placing song on card and read it from it.but i whant to set
 ringtone
from
song that i inport in my activity in R.drawable.song...that
 solution
i
whant...did you try make app to set ringtone?
   
On Apr 23, 2012 9:34 PM, Kristopher Micinski
krismicin...@gmail.com
wrote:
   
How did it not solve your problem?  What did you try?
   
Kris
   
On Mon, Apr 23, 2012 at 3:13 PM, jadranko bodiroga
jadrankobodiroga1...@gmail.com wrote:
 sorry..still did not solve my problem.any other suggestions
 where
 to
 start...

 --
 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
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en
   
--
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
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
   
--
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
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
  
   --
   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
   For more options, visit this group at
   http://groups.google.com/group/android-developers?hl=en
  
   --
   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
   For more options, visit this group at
   http://groups.google.com/group/android-developers?hl=en
 
  --
  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
  For more options, visit this group at
  http://groups.google.com/group/android-developers?hl=en
 
  --
  You received this message because you are subscribed to the Google
  Groups Android Developers group.
  To post

Re: [android-developers] Set Ringtone

2012-04-24 Thread jadranko bodiroga
Tried solutins and ideas in a link you sent...in the both solutios thay are
placing song on card and read it from it.but i whant to set ringtone from
song that i inport in my activity in R.drawable.song...that solution i
whant...did you try make app to set ringtone?

On Apr 23, 2012 9:34 PM, Kristopher Micinski krismicin...@gmail.com
wrote:

 How did it not solve your problem?  What did you try?

 Kris

 On Mon, Apr 23, 2012 at 3:13 PM, jadranko bodiroga
 jadrankobodiroga1...@gmail.com wrote:
  sorry..still did not solve my problem.any other suggestions where to
  start...
 
  --
  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
  For more options, visit this group at
  http://groups.google.com/group/android-developers?hl=en

 --
 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
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en

-- 
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
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: [android-developers] Set Ringtone

2012-04-24 Thread jadranko bodiroga
But if i whant to send my app to friend ,i have to copy him that song too
on specific location,is it? Than i can not share my app to others,becouse
app will not find song...that is a reason i whant to import song into my
activity...

On Apr 24, 2012 5:10 PM, Kristopher Micinski krismicin...@gmail.com
wrote:

 So take your file, put it somewhere in storage, and then set the URI
 appropriately.

 Kris

 On Tue, Apr 24, 2012 at 10:40 AM, jadranko bodiroga
 jadrankobodiroga1...@gmail.com wrote:
  Tried solutins and ideas in a link you sent...in the both solutios thay
 are
  placing song on card and read it from it.but i whant to set ringtone from
  song that i inport in my activity in R.drawable.song...that solution i
  whant...did you try make app to set ringtone?
 
  On Apr 23, 2012 9:34 PM, Kristopher Micinski krismicin...@gmail.com
  wrote:
 
  How did it not solve your problem?  What did you try?
 
  Kris
 
  On Mon, Apr 23, 2012 at 3:13 PM, jadranko bodiroga
  jadrankobodiroga1...@gmail.com wrote:
   sorry..still did not solve my problem.any other suggestions where to
   start...
  
   --
   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
   For more options, visit this group at
   http://groups.google.com/group/android-developers?hl=en
 
  --
  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
  For more options, visit this group at
  http://groups.google.com/group/android-developers?hl=en
 
  --
  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
  For more options, visit this group at
  http://groups.google.com/group/android-developers?hl=en

 --
 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
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en

-- 
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
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: [android-developers] Set Ringtone

2012-04-24 Thread jadranko bodiroga
How to do that...give me some example...

On Apr 24, 2012 6:18 PM, Kristopher Micinski krismicin...@gmail.com
wrote:

 What are you even talking about...?

 You can take the file out of shared resources and store it in storage,
 distributing the app with the file in resources..

 Kris

 On Tue, Apr 24, 2012 at 11:48 AM, jadranko bodiroga
 jadrankobodiroga1...@gmail.com wrote:
  But if i whant to send my app to friend ,i have to copy him that song
 too on
  specific location,is it? Than i can not share my app to others,becouse
 app
  will not find song...that is a reason i whant to import song into my
  activity...
 
  On Apr 24, 2012 5:10 PM, Kristopher Micinski krismicin...@gmail.com
  wrote:
 
  So take your file, put it somewhere in storage, and then set the URI
  appropriately.
 
  Kris
 
  On Tue, Apr 24, 2012 at 10:40 AM, jadranko bodiroga
  jadrankobodiroga1...@gmail.com wrote:
   Tried solutins and ideas in a link you sent...in the both solutios
 thay
   are
   placing song on card and read it from it.but i whant to set ringtone
   from
   song that i inport in my activity in R.drawable.song...that solution i
   whant...did you try make app to set ringtone?
  
   On Apr 23, 2012 9:34 PM, Kristopher Micinski 
 krismicin...@gmail.com
   wrote:
  
   How did it not solve your problem?  What did you try?
  
   Kris
  
   On Mon, Apr 23, 2012 at 3:13 PM, jadranko bodiroga
   jadrankobodiroga1...@gmail.com wrote:
sorry..still did not solve my problem.any other suggestions where
 to
start...
   
--
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
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
  
   --
   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
   For more options, visit this group at
   http://groups.google.com/group/android-developers?hl=en
  
   --
   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
   For more options, visit this group at
   http://groups.google.com/group/android-developers?hl=en
 
  --
  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
  For more options, visit this group at
  http://groups.google.com/group/android-developers?hl=en
 
  --
  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
  For more options, visit this group at
  http://groups.google.com/group/android-developers?hl=en

 --
 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
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en

-- 
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
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: [android-developers] Set Ringtone

2012-04-24 Thread jadranko bodiroga
THANKS MAN..I WILL TRY THAT TO IMPORT TO MY APP..if i manage i will share
code...

On Apr 24, 2012 7:53 PM, Kristopher Micinski krismicin...@gmail.com
wrote:

 Did you try googling access file from resources android?

 This comes up:

 http://stackoverflow.com/questions/4081763/access-resource-files-in-android

 kris

 On Tue, Apr 24, 2012 at 1:34 PM, jadranko bodiroga
 jadrankobodiroga1...@gmail.com wrote:
  How to do that...give me some example...
 
  On Apr 24, 2012 6:18 PM, Kristopher Micinski krismicin...@gmail.com
  wrote:
 
  What are you even talking about...?
 
  You can take the file out of shared resources and store it in storage,
  distributing the app with the file in resources..
 
  Kris
 
  On Tue, Apr 24, 2012 at 11:48 AM, jadranko bodiroga
  jadrankobodiroga1...@gmail.com wrote:
   But if i whant to send my app to friend ,i have to copy him that song
   too on
   specific location,is it? Than i can not share my app to others,becouse
   app
   will not find song...that is a reason i whant to import song into my
   activity...
  
   On Apr 24, 2012 5:10 PM, Kristopher Micinski 
 krismicin...@gmail.com
   wrote:
  
   So take your file, put it somewhere in storage, and then set the URI
   appropriately.
  
   Kris
  
   On Tue, Apr 24, 2012 at 10:40 AM, jadranko bodiroga
   jadrankobodiroga1...@gmail.com wrote:
Tried solutins and ideas in a link you sent...in the both solutios
thay
are
placing song on card and read it from it.but i whant to set
 ringtone
from
song that i inport in my activity in R.drawable.song...that
 solution
i
whant...did you try make app to set ringtone?
   
On Apr 23, 2012 9:34 PM, Kristopher Micinski
krismicin...@gmail.com
wrote:
   
How did it not solve your problem?  What did you try?
   
Kris
   
On Mon, Apr 23, 2012 at 3:13 PM, jadranko bodiroga
jadrankobodiroga1...@gmail.com wrote:
 sorry..still did not solve my problem.any other suggestions
 where
 to
 start...

 --
 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
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en
   
--
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
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
   
--
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
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
  
   --
   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
   For more options, visit this group at
   http://groups.google.com/group/android-developers?hl=en
  
   --
   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
   For more options, visit this group at
   http://groups.google.com/group/android-developers?hl=en
 
  --
  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
  For more options, visit this group at
  http://groups.google.com/group/android-developers?hl=en
 
  --
  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
  For more options, visit this group at
  http://groups.google.com/group/android-developers?hl=en

 --
 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

Re: [android-developers] Set Ringtone

2012-04-23 Thread jadranko bodiroga
sorry..still did not solve my problem.any other suggestions where to
start...

-- 
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
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: [android-developers] Sleep

2012-04-17 Thread jadranko bodiroga
Thanks, people...Really helped me with  both solution.

http://groups.google.com/group/android-developers?hl=en


-- 
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
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: [android-developers] Andriod Button-doubt

2012-04-10 Thread jadranko bodiroga
Use Public variablesSet ind1,ind2,ind3... on 0, and if some button is
Clicked change it on 1.That is storing information if some button is
clicked.



On Thu, Apr 5, 2012 at 3:04 PM, decent boy it07427.s...@gmail.com wrote:

 If we have a no. of buttons and i we want to check which is clicked
 and which is not and how to perform operations on them depending on
 condition,i want some help,tell me guyz how to perform this.
 My email id is it07427.s...@gmail.com.

 --
 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
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en

-- 
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
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: [android-developers] physics box 2d andengine game

2012-04-03 Thread jadranko bodiroga
what do you whant to know?

Bodiroga CG

-- 
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
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en