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

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

Re: [android-developers] PDF files search utility

2014-01-21 Thread Jadranko Bodiroga
, 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

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

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

2013-09-02 Thread Jadranko Bodiroga
-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

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

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

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

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

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:

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

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

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

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

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

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

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

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

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

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

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

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

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

[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

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

[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

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

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

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

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

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

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

Re: [android-developers] Set Ringtone

2012-04-26 Thread jadranko bodiroga
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

Re: [android-developers] Set Ringtone

2012-04-24 Thread jadranko bodiroga
, 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

Re: [android-developers] Set Ringtone

2012-04-24 Thread jadranko bodiroga
...@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

Re: [android-developers] Set Ringtone

2012-04-24 Thread jadranko bodiroga
, 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

Re: [android-developers] Set Ringtone

2012-04-24 Thread jadranko bodiroga
-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

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

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

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

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