[android-developers] Re: Using a TouchDelegate

2017-01-11 Thread Justin Kalis
Hi Justin, I have a question on this topic because if I were building a custom keyboard like the example on git for soft keyboard how could I employ the use of this to improve the accuracy of the hit/clicks on buttons using touch delegates when there are so many buttons with very little margin

[android-developers] Android app for EMV card emulation

2016-10-30 Thread Justin Crosbie
Hi, I know there have been posts on this before, but I'm wondering what the current state of play is with bank/credit card emulation? Particularly in Australia? Here, the Commonwealth bank has Tap and Pay with Android, so you can use an Android phone in place of card for Paypass/Paywave at sup

[android-developers] I am Creating A simple Fish Moving Game but there is a problem i cant found

2016-04-22 Thread Justin Bieber
Hay all i want to fix a problem that is my background is not moving i dont know what is problem can some one found or tell me how to fix it here i am going to give all code of three class that i code which are main class for moving background using SurfaceHolder, Thread and bitmapFactory here is

Re: [android-developers] Weight ingored when i append text in text view

2016-03-02 Thread Justin Anderson
We would be happy to help you out... provided you give us more information. Saying layout_weight isn't working properly and posting a huge layout file is nowhere near enough information. Maybe explain what you are expecting to happen, and what is actually happening? Some screenshots or other dia

Re: [android-developers] Make a Broadcast receiver receive broadcasts after force closing.

2016-03-02 Thread Justin Anderson
Hmm... ok, that eliminates the main thought I had as to the cause of the problem. Have you seen this? http://stackoverflow.com/a/9240705/249412 On Wed, Mar 2, 2016 at 9:10 AM Narendran Anil wrote: > Yes. It is a separate class. Registered in the manifest. See, it work when >>> the app is closed

Re: [android-developers] I want to create a transparent navigation drawer over the texture view where texture view will contain the live camera scene.

2016-03-02 Thread Justin Anderson
"I have been struggling with this since last week but without any luck." What have you tried so far? On Wed, Mar 2, 2016 at 9:15 AM umashankar thakur wrote: > I am using texture view for showing live content of camera. > I need to draw that semi transparent white colored border or outline (I >

Re: [android-developers] Re: ImageView not showing

2016-03-02 Thread Justin Anderson
"RelativeLayout layout = (RelativeLayout) this.findViewById(R.layout. activity_menu_on_loadup);" findViewById requires an id resource... not a layout resource. That means what you pass in to findViewById should look like this: R.id.my_view_id On Tue, Mar 1, 2016 at 8:05 PM Elijah Smith wrote:

Re: [android-developers] Re: Image adquisicion app

2016-03-02 Thread Justin Anderson
Try again... On Tue, Mar 1, 2016 at 7:04 PM developer wrote: > i need acquire image and have control on the flashlight to turn on or turn > off while i see image of the camera. > > -- > You received this message because you are subscribed to the Google Groups > "Android Developers" group. > To u

Re: [android-developers] Notification App Android Studio

2016-03-02 Thread Justin Anderson
The difference is that Android Wear devices are always connected to a device via bluetooth. To do what you are wanting to do, you would need to either establish a bluetooth connection and send data via the connection yourself or send the data up to some web server that you maintain and then do a p

Re: [android-developers] One big json call or multiple per activity calls for json?

2016-03-02 Thread Justin Anderson
I think the best practice depends on the requirements for the app and there isn't a globally acceptable answer to that. Obviously you don't want to have an overly "chatty" app, but depending on how much data you need and how often some of that data is used, you may not want to get it all up front.

Re: [android-developers] Make a Broadcast receiver receive broadcasts after force closing.

2016-03-02 Thread Justin Anderson
How are you creating your broadcast receiver? Is it a separate class and defined in the manifest? Or is it created and registered in an activity? On Wed, Mar 2, 2016 at 2:49 AM Narendran Anil wrote: > Hello, > > I am working on an app that will show a pop up on call end. It works fine > with a

Re: [android-developers] Font can't be found in assets/fonts

2016-01-21 Thread Justin Anderson
Do you need to specify the .ttf extension? On Thu, Jan 21, 2016, 8:32 PM NuffsaidM8 wrote: > > > > >

Re: [android-developers] can't install app on android 6.0

2016-01-21 Thread Justin Anderson
Oh nice, I wasn't aware of that! On Thu, Jan 21, 2016, 7:32 AM Dan wrote: > If it is the multi-user issue, you don't have to use adb uninstall, the > upper right menu bar in the settings->apps->(select your app) will have an > "uninstall for all users" option that will get it off the device for

Re: [android-developers] VPN TRUE

2016-01-21 Thread Justin Anderson
This is your third post promoting your app in this group. Please stop spamming the group. On Thu, Jan 21, 2016, 1:53 AM Юра Сокол wrote: > VPN TRUE Mobile application. Now not only for tiresome iPads/iPhones, but > specifically for your favorite Android devices ;) New functional mobile > applica

Re: [android-developers] can't install app on android 6.0

2016-01-20 Thread Justin Anderson
If you have multiple users on your device and install via adb (typically via the IDE while developing the app) then you have to use adb to uninstall it, as TreKing suggested. Installing via adb seems to install for all users. If you then uninstall the app via the normal mechanism on your phone it

Re: [android-developers] Immediate Need||SOA Architect(12+ Months,CA)

2016-01-20 Thread Justin Anderson
Seriously, please stop using this forum as a head-hunting playground... On Wed, Jan 20, 2016 at 2:40 PM pragyan dixit wrote: > > > Hi, > Hope you are doing great. > I have a urgent direct client requirement , Please send me your updated > profile. > > Below is the Complete Requirement > > > > *R

Re: [android-developers] Re: Socket.io on Singleton

2016-01-20 Thread Justin Anderson
I haven't done anything with socket.io, but a couple things I've come across from just a few very quick searches... perhaps these will help? Also, my advice in the future would be to look for a forum dedicated to whatever library/framework you are having problems with... http://stackoverflow.com/q

Re: [android-developers] Socket.io on Singleton

2016-01-20 Thread Justin Anderson
What do you mean that moving calls to a device didn't work? That is most likely what you want. I would implement it as a started and bound service. On Wed, Jan 20, 2016, 3:21 PM Gabriel Avila wrote: > I'm trying to implement a globalized Socket.io connection method for an > entire application (m

Re: [android-developers] can't install app on android 6.0

2016-01-20 Thread Justin Anderson
It won't install, or it won't run properly once installed? On Wed, Jan 20, 2016, 5:30 AM Pedro CLR wrote: > I was developing a very simple app, 3 activities: > > main that will check for existing URL in SharedPreferences and open > WebActivity if exists, and UrlActivity if doesn't exist. > > Url

Re: [android-developers] How Can I Insert Radiobutton Value To SQLite (radio button 1 & radio button 2 has a value of 1)

2016-01-19 Thread Justin Anderson
I don't understand0 what you are asking... storing a value in a database should be pretty straightforward. What have you tried so far for storing a value in a database? On Tue, Jan 12, 2016, 9:11 AM Fernando Nicolei Esperida < fernandonico...@gmail.com> wrote: > I Am Creating A Voting App For Ou

Re: [android-developers] TabLayout - tab doesn't refresh view

2016-01-19 Thread Justin Anderson
Just for kicks, what happens if you don't create a new fragment every time you change tabs? Only create it once, something like this tutorial: http://www.truiton.com/2015/06/android-tabs-example-fragments-viewpager/ Note, I'm not endorsing that tutorial or anything... I don't see anything immedia

Re: [android-developers] Immediate Need: .Net UI Developer - MD

2016-01-19 Thread Justin Anderson
Please stop posting these job opportunities. This forum is for android developers who have development questions... it is not your personal recruitment pool. On Mon, Jan 18, 2016 at 9:04 AM Megha Agarwal wrote: > > > > > *Hello,Please let me know if you have any consultant available for the > b

Re: [android-developers] Ability for users to resize views?

2016-01-19 Thread Justin Anderson
You haven't provided anywhere near enough information to get the info you want... http://www.catb.org/esr/faqs/smart-questions.html http://android-dev-tips-and-tricks.blogspot.com/2012/08/so-you-need-help.html On Mon, Jan 18, 2016 at 1:05 PM wrote: > My Android app has two views, displayed sim

Re: [android-developers] This app is incompatible with all of your devices

2016-01-19 Thread Justin Anderson
There are a number of potential reasons. Here are a few links that may help: http://lifehacker.com/google-play-shows-you-why-an-app-is-incompatible-with-y-496328577 http://stackoverflow.com/questions/21730560/the-app-is-incompatible-with-all-your-devices http://stackoverflow.com/questions/1047595

Re: [android-developers] read file from phone by using android studio

2016-01-19 Thread Justin Anderson
What files are you trying to access? On Tue, Jan 19, 2016 at 1:13 AM omo wrote: > Hi, i m newbie here. I want to choose files from phone and encrypt it. > The problem is i cannot get the path or select the files. > Can teach me how to solve this problem by using what method? > Or any tutorial ca

Re: [android-developers] SDK installation does not detect JDK

2016-01-19 Thread Justin Anderson
If you look at the development requirements, you will see that you need JDK 7: http://developer.android.com/sdk/index.html#Requirements On Tue, Jan 19, 2016 at 6:38 PM Ranieri Santos wrote: > Hello all, > > I´m using Windows7 64 bit and installed JDK1.8.0_66 (64 bit) but the SDK > installation i

Re: [android-developers] After signing app, what APK file can my phone use?

2016-01-19 Thread Justin Anderson
Providing you went through the signing process, then app-release.apk is the one you want. On Tue, Jan 19, 2016 at 9:37 PM NuffsaidM8 wrote: > I just learned about signing a finished app. I want to know how I could > get this app onto my phone. I understand that it is an APK file that should > b

Re: [android-developers] Start up application before sending intent

2016-01-19 Thread Justin Anderson
Glad you were able to get it worked out. On Tue, Jan 19, 2016, 8:32 PM NuffsaidM8 wrote: > As soon as I last posted I figured out what you meant and fixed the issue. > Thanks! > > -- > You received this message because you are subscribed to the Google Groups > "Android Developers" group. > To un

Re: [android-developers] Start up application before sending intent

2016-01-19 Thread Justin Anderson
No, not quite... The boot up of the phone is a special case scenario. I'm saying that in that scenario you can't rely on the broadcast system, so you need to come up with another code path to manually get your activity's receiver code executed. I would take the code that is executed in your rece

Re: [android-developers] Start up application before sending intent

2016-01-19 Thread Justin Anderson
up on this though: http://developer.android.com/guide/components/intents-filters.html Sorry for the confusion... that's what I get for scanning the code too quickly. I missed your startActivity() call in the middle of the code snippet. Hope that helps, Justin On Tue, Jan 19, 2016 at 4:21 PM J

Re: [android-developers] Start up application before sending intent

2016-01-19 Thread Justin Anderson
If you send a broadcast, and your activity isn't currently running, then your Broadcast receiver isn't registered with the OS. How could it be? Your activity hasn't run the code to register itself. And, furthermore, if you've done it correctly, when your activity goes away, it should unregister it

Re: [android-developers] Start up application before sending intent

2016-01-19 Thread Justin Anderson
>From what you've described, I suspect you are doing your receiver only in code, which will not allow you to do what you want... This kind of receiver is only active while your activity is active. Since your activity is not active, neither is your receiver. Why not just start your activity explici

Re: [android-developers] Re: App changes name???

2016-01-18 Thread Justin Anderson
Sounds like someone hacked your account... On Mon, Jan 18, 2016, 6:37 PM Burke Knight wrote: > Since can't edit post, have to double post. > > > Not only was the title changed, but the description was, too. > I'm not very pleased with this, as it added false information to the > description. > >

Re: [android-developers] Update notification when time change

2016-01-18 Thread Justin Anderson
Well, what exactly were you trying? On Mon, Jan 18, 2016, 1:56 PM Martijn van Kekem < s93martijn.ke...@leerling.denieuwsteschool.nl> wrote: > Hello, > > I'm developing one of my first apps right now, and i'm trying to update > the notification when the date manually/automatic changed. > I was try

Re: [android-developers] ndk-build does not find header files in example code

2016-01-16 Thread Justin Anderson
Maybe this will help? http://stackoverflow.com/questions/8638273/android-ndk-samples-compilation-error-string-h-no-such-file-or-directory On Tue, Jan 12, 2016 at 3:29 PM Seth Tucker wrote: > Hi, >I'm trying to get the eclipse tool-chain working because I need to work > on the NDK. So for it'

Re: [android-developers] help needed for my new App

2016-01-16 Thread Justin Anderson
This link will tell you all you need to know about publishing an app: http://developer.android.com/distribute/googleplay/start.html On Tue, Jan 12, 2016 at 5:36 PM For Great Vocals wrote: > Hi peeps. I've paid someone to build an app for me but they have refused > to publish it. They have sent

Re: [android-developers] To Create App for to Fetch Location Service App

2016-01-16 Thread Justin Anderson
"Is there anyway to hide this App service which is running in my phone bot not be visible at anywhere..." No "Please advise?" Unless I'm mistaken, once installed, an app will not do anything in the background until the user has first manually launched the app. I am very curious on the use case fo

Re: [android-developers] Creating FrameLayout Programmatically

2016-01-16 Thread Justin Anderson
FrameLayout(this); framelayout.setLayoutParams(new FrameLayout.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.MATCH_PARENT)); //Adding views to FrameLayout framelayout.addView(imageView); framelayout.addView(textView1); framelayout.addView(textView2); setContentView(framelayout); } Hope tha

Re: [android-developers] Decision making according to what the input in numeric field in ODK form

2016-01-16 Thread Justin Anderson
Say what now? On Fri, Jan 15, 2016 at 7:37 AM Seema Rani wrote: > Hello,, > > I am stuck on a point where I have to decide form redereing from ODK > according to the inputs, like If I hacve enterd 2 in numeric field want to > open form twice. > > -- > You received this message because you are s

Re: [android-developers] payment

2016-01-16 Thread Justin Anderson
Google will not pay you to develop an app. If you choose to develop an app and sell it, then people who decide to buy your app will pay Google for it, then Google will pay you the money earned minus 30%. On Sat, Jan 16, 2016 at 3:20 AM Harshal Jaiswal < harshaljaiswal1...@gmail.com> wrote: > doe

Re: [android-developers] Newbie: Lesson 2 Module 4: button_send

2016-01-16 Thread Justin Anderson
you are importing/using R.string as opposed to android.R.string... Hope that helps, Justin On Sat, Jan 16, 2016 at 5:02 PM moodamultani wrote: > Hello friends, > > I was attempting the above module 4 in Lesson 2 (Building your first App) > in the training pages

Re: [android-developers] Need someone to write some code

2016-01-16 Thread Justin Anderson
You are going to need a lot of backend server code to do that... On Sat, Jan 16, 2016, 1:12 PM United 45 wrote: > Hi, I'm trying to build a face to face video chat. I need as much help as > I could get. I need one activity one user can find another random chatter > with a next button. > > > On F

Re: [android-developers] Need someone to write some code

2016-01-15 Thread Justin Anderson
full-time day jobs. Some, like myself, do contract work on the side... But not for free. Everyone on this list participates and answers questions on their own time. Thanks, Justin On Fri, Jan 15, 2016, 5:21 PM United 45 wrote: > I was just assuming you guys were interested in solving pro

Re: [android-developers] TabLayout - tab doesn't refresh view

2016-01-12 Thread Justin Anderson
Code? On Tue, Jan 12, 2016, 9:16 AM Hugo Teijiz wrote: > Hello to everyone. > > I develop an Android application with TabLayout. The App has 3 tabs. When > I click over Tab 1 (Index 0) and Tab 3 (Index 2) the view refresh great, > but when I click over Tab 2 (Index 1) nothing happens. > > OnSele

Re: [android-developers] Updating Android Application from within the application

2016-01-07 Thread Justin Anderson
Is the device connected directly to the build machine? On Thu, Jan 7, 2016, 5:26 PM Shiv Anand wrote: > Hi Folks, > > We are trying to automate our CI process by getting the new build of > application and then downloading it on the target device. The new build is > downloaded successfully howeve

Re: [android-developers] Select multiple images - web

2015-12-04 Thread Justin Anderson
http://android-dev-tips-and-tricks.blogspot.com/2012/08/so-you-need-help.html On Fri, Dec 4, 2015 at 8:02 AM wrote: > We have a web application that uploads photos to a specific virtual > directory on our asp.net website. We use a FileUpload button and the > process works great for selecting a

Re: [android-developers] For a help

2015-12-04 Thread Justin Anderson
http://android-dev-tips-and-tricks.blogspot.com/2012/08/so-you-need-help.html On Fri, Dec 4, 2015 at 8:06 AM m tt wrote: > I am trying to get pretty good map. Which is you can look live. I mean > like a moving things. But i have a samsung galaxy tab. So i dont have > computer. Please if there so

Re: [android-developers] Error code 103

2015-12-04 Thread Justin Anderson
http://lmgtfy.com/?q=android+error+code+103 On Fri, Dec 4, 2015 at 9:30 AM Israel Papini Veronezi < israelpveron...@gmail.com> wrote: > My app is giving the error 103 on some devices in the installation. Can > anyone help me? > > > -- > You received this message because you are subscribed to the

Re: [android-developers] App failing on Samsung Galaxy 5 and 6

2015-12-03 Thread Justin Anderson
Sounds like you're going to have to use some debugging skills and figure out more specifically what is causing the problem. Given that it is marshmallow problems my first suggestion would be to look at permissions since this fundamentally changed. On Thu, Dec 3, 2015, 7:45 AM luiX_ wrote: > I'v

Re: [android-developers] Whats your story behind your brand? ---to start up

2015-12-03 Thread Justin Anderson
Ok seriously, this forum is not for posts like this. You have posted many times, and not once have you actually asked an app development question. On Thu, Dec 3, 2015, 2:29 PM Danny Xu wrote: > *Story---company culture* > > > For me it is the most important thing for a brand > > > If a brand doe

Re: [android-developers] ViewPager in Fragment

2015-11-11 Thread Justin Anderson
"can you help me?" Not without code... On Wed, Nov 11, 2015, 12:18 PM Jonathan Fajardo Roa wrote: > Hello, I have a ViewPager a Fragment, the first time I call the fragment > is well shows the ViewPager, but not the second shows the info ViewPager, > can you help me? > > -- > You received this

Re: [android-developers] how to get windows to recognize kindle fire 5'th generation.

2015-11-03 Thread Justin Anderson
I ran into the same problem. I was able to get it working by going to device manager and using Google's driver. On Wed, Nov 4, 2015, 12:09 AM Ray Tayek wrote: > hi, i got a couple of these, but windows does not recognize them. > > i have uninstalled the windows drivers and installed the > kindle

Re: [android-developers] app size build with android studio much bigger than made with Eclipse

2015-09-30 Thread Justin Anderson
Have you tried looking at the contents of the .apk and comparing it with one of your older .apk files built from eclipse? On Wed, Sep 30, 2015 at 11:22 AM Faust Nijhuis wrote: > I imported all my apps from Eclipse to Android studio and all of them are > much bigger (5 to 7 times) > > I use progu

Re: [android-developers] Core Image equivalent on Android

2015-08-24 Thread Justin Anderson
I would imagine you can do similar things, but not knowing kinds of transformations and filters you are wanting to do, not sure how we can help... On Mon, Aug 24, 2015, 5:16 PM Paulo Cesar wrote: > I'm mainly a iOS developer, and I have this app that applies a series of > transformations and ble

Re: [android-developers] Re: Windows 10 and Studio

2015-08-24 Thread Justin Anderson
I am on Win 10 and have not had problems like this. I do not use GenyMotion. I also found this: http://stackoverflow.com/questions/31709084/genymotion-problems-in-windows-10 The underlying problems may very well not even be GenyMotion, but VirtualBox... As of last night the latest version is not

Re: [android-developers] Manifest android:process field

2015-08-11 Thread Justin Anderson
How is it not an answer? On Tue, Aug 4, 2015, 9:49 AM pedr0 wrote: > This is not quite an answer ... is it ? > > > On Tuesday, August 4, 2015 at 3:40:53 PM UTC+1, MagouyaWare wrote: > >> The documentation does not state that each time the activity is created >> it will also create a new process.

Re: [android-developers] font size normalization

2015-08-07 Thread Justin Anderson
AFAIK there is no direct matching like that. They are two different operating systems and render text differently. That being said, I think I read an article once that said there is a (very) rough equivalence between pts used in iOS and sp/dp values used in Android. You could try using 18 sp (or

Re: [android-developers] Version 1 is not served to any device configuration: all devices that might receive version 1 would receive version 2.

2015-08-07 Thread Justin Anderson
http://stackoverflow.com/questions/16060655/what-does-this-google-play-apk-publish-error-message-mean http://android-dev-tips-and-tricks.blogspot.com/2012/08/so-you-need-help.html On Fri, Aug 7, 2015, 5:16 AM lselwd wrote: > This configuration cannot be published for the following reason(s): >

Re: [android-developers] Manifest android:process field

2015-08-04 Thread Justin Anderson
The documentation does not state that each time the activity is created it will also create a new process. From your email, the documentation states: "If the name assigned to this attribute begins with a colon (':'), a new process, private to the application, is created when it's needed and the ac

Re: [android-developers] font resizing help

2015-08-03 Thread Justin Anderson
*Coffee = code (That's what I get for answering on my phone...) On Mon, Aug 3, 2015, 2:05 PM Justin Anderson wrote: > Without coffee we won't be able to help much... > > Are you programmatically setting the font size? Or are you setting it in > xml? What type of size v

Re: [android-developers] font resizing help

2015-08-03 Thread Justin Anderson
Without coffee we won't be able to help much... Are you programmatically setting the font size? Or are you setting it in xml? What type of size value are you using (px, sp, dp, etc...)? On Mon, Aug 3, 2015, 10:18 AM Jags wrote: > Hi All, > > I am using Avenir-Light.ttf font in my project which

Re: [android-developers] Android Application example

2015-07-31 Thread Justin Anderson
Say what? On Thu, Jul 30, 2015, 4:31 PM shiva pendem wrote: > Hello, > > I need a android application where it will show two routes in first screen > let say the route is from A to B and the second one is from C to D. and > below that i need a button to which asks for show on map, on clicking t

Re: [android-developers] Cutom Tab Indicator TabLayout Design Lib Support

2015-07-31 Thread Justin Anderson
this in the past but it's been a while do there may be done additional tweaking you need to do. If I remember right I used PagerTab Strip. Hour that at least gets you in the right direction. Thanks, Justin On Fri, Jul 31, 2015, 3:38 AM Pratama Nur Wijaya wrote: > Hi everyone, >

Re: [android-developers] Re: Android custom data to show in listview

2015-07-23 Thread Justin Anderson
ing through the code to see if you can figure out what is going on, or at least try to narrow it down to where you think the cause of the problem is and post another, more specific, question. Thanks, Justin On Thu, Jul 23, 2015, 1:12 PM GROZEA Ion wrote: > Hi, > I have already corrected thi

Re: [android-developers] Re: Android custom data to show in listview

2015-07-23 Thread Justin Anderson
A fragment is not a Context. Pass in "getActivity()" instead of "this" On Thu, Jul 23, 2015, 11:16 AM gvi7 wrote: > I have tried the following > > > > > //NameImg[][] list_NameImg = new Na

Re: [android-developers] Re: Android custom data to show in listview

2015-07-23 Thread Justin Anderson
1) What is the error you are getting? 2) What is ModesLvAdapter? You didn't provide that class. You basically gave us everything about your project except the ONE thing that has to do with your question. On Thu, Jul 23, 2015 at 5:56 AM gvi7 wrote: > Here is how the UI should look like > > >

Re: [android-developers] Re: Google Play Services adds nearly 10,000 methods!

2015-07-17 Thread Justin Anderson
Read through this article, in particular the section on only including portions of Google Play Services in your app: https://developers.google.com/android/guides/setup On Fri, Jul 17, 2015 at 10:32 AM Igor Ganapolsky wrote: > Any update on this issue? I there a workaround at all? I am experien

Re: [android-developers] Get the background Running app list.

2015-07-08 Thread Justin Anderson
As of Lollipop there is no way to do that. On Wed, Jul 8, 2015, 8:50 AM Seshu wrote: > Hi All, > How can we retrieve the list of background runnings apps list in > android. currently i am using > public List getRunningTasks (int maxNum). > But this method is deprecated in API level 21 i.e.,

Re: [android-developers] "Error inflating class com.android.internal.widget.ActionBarContainer" on some Sony devices.

2015-07-07 Thread Justin Anderson
Not entirely sure, but maybe this helps? http://stackoverflow.com/questions/12115125/creating-custom-style-crashes-app On Wed, Jun 17, 2015 at 6:41 PM Farproc wrote: > Hi, > > I've got a lot of error reports from Sony devices with Android 5.0.2 in > the past few weeks. It seems that a ArrayInde

Re: [android-developers] Samsung Note issue - SpannableStringBuilder;; SPAN_EXCLUSIVE_EXCLUSIVE spans cannot have a zero length

2015-06-15 Thread Justin Anderson
SpannableStringBuilder;; SPAN_EXCLUSIVE_EXCLUSIVE spans cannot have a zero length My guess would be that you are trying to set a span on an empty string. Don't do that. :-) On Thu, Jun 4, 2015, 11:30 PM Rakesh Jha wrote: > Hi, > > i'm facing this error since 3-4 days, what ever solution I got i

Re: [android-developers] Bonjour Browsing

2015-06-15 Thread Justin Anderson
What have you tried so far? On Thu, Jun 11, 2015, 5:14 AM Raghavendra Rao wrote: > Can anybody help me on how can implement "listing all the Bonjour Service > with in the WiFi Vicinity" > > -- > You received this message because you are subscribed to the Google > Groups "Android Developers" grou

Re: [android-developers] Error with android.support.v7.internal.widget.ActionBarOverlayLayout

2015-06-05 Thread Justin Anderson
I'm not sure what you are asking... On Fri, Jun 5, 2015, 2:44 PM Ricardo Santos wrote: > Hello everyone! Have anyone solved the problem > of android.support.v7.internal.widget.ActionBarOverlayLayout rendering in > Android Studio? > > I am having this problem for a while and have always worked ar

Re: [android-developers] Using Callbacks in Master-Detail Scenario.

2015-05-20 Thread Justin Anderson
"Can someone tell me what I'm missing here?" Some sample code, so we can try to help... :-) On Wed, May 20, 2015 at 8:29 AM Phil Gibbs wrote: > I have a typical master-detail scenario. That is, first activity invokes > a list fragment in which I retrieve a list using a contentprovider. An > It

Re: [android-developers] Re: Android studio "inished with non-zero exit value 3" error

2015-05-13 Thread Justin Anderson
@Marina Thank you for that information. I had never encountered that problem before. If I encounter it in the future I will know how to start figuring out the root cause of the problem. On Wed, May 13, 2015 at 2:21 PM Justin Anderson wrote: > *"Everyone works within time constraints

Re: [android-developers] Re: Android studio "inished with non-zero exit value 3" error

2015-05-13 Thread Justin Anderson
ee why I should contribute to a forum full of trolls like yourself, and that is my choice."* Yes, it is your choice. And if you can't control your temper and be respectful and patient on here, then you have my full support in that choice. Thanks, Justin On Wed, May 13, 2015 at 1:59 PM R

Re: [android-developers] Re: Android studio "inished with non-zero exit value 3" error

2015-05-13 Thread Justin Anderson
*"For the millionth time, before I posted the question, I have already tried searching for the answer, and all I found was an unanswered StackOverflow question."* I've already addressed that. That just adds to the reason that you should be patient and wait a little longer. It also does nothing to

Re: [android-developers] Should we adhere holo design or material design for app running on Android below 5

2015-05-13 Thread Justin Anderson
Good point. I will have to start updating my apps now. :-) On Tue, May 12, 2015 at 8:59 AM Jose_GD wrote: > +1. > > Google wouldn't take the effort to make AppCompat if they didn't intend to > get Material Design on older devices. > > Cheers > > José > https://play.google.com/store/apps/develope

Re: [android-developers] Re: Android studio "inished with non-zero exit value 3" error

2015-05-13 Thread Justin Anderson
Glad you found the solution to your problem. :-) On Wed, May 13, 2015 at 9:57 AM Ristar wrote: > If no one can answer, the normal assumption would be everyone's clueless. > In any case, I did not assert that everyone's clueless, only asking if that > were so. As it is, I have pointed out that th

Re: [android-developers] Re: Android studio "inished with non-zero exit value 3" error

2015-05-13 Thread Justin Anderson
*"If you are such a fragile and sensitive being, I suggest that you stop reading."* I am neither fragile nor sensitive. You were being rude, were called out on it, and then got belligerent. I was simply giving you some advice if you really wanted to have a chance at getting an answer. *"In fact, I

Re: [android-developers] Re: Android studio "inished with non-zero exit value 3" error

2015-05-12 Thread Justin Anderson
Rudeness is not defined by the question asked, but by how it was asked. And yes, your second post was rude. This list is answered by people who answer things in their spare time. They aren't sitting around getting paid by Google (or anyone for that matter) to answer questions. It is not uncommon

Re: [android-developers] Should we adhere holo design or material design for app running on Android below 5

2015-05-11 Thread Justin Anderson
Ideally, you should style it for whatever version of Android the app is running on. If Lollipop, then, Material, 4.x should use Holo, etc... On Mon, May 11, 2015, 11:22 AM yccheok wrote: > Previously, I had an Android app, which built on the top of > ActionBarSherlock. The app runs well on Andr

Re: [android-developers] apk name for Google play

2015-05-01 Thread Justin Anderson
Yes, you can rename the apk file however best suits your needs. The play store only cares about the data in the manifest file and how the apk was signed. On Fri, May 1, 2015, 10:34 AM NewToAndroid wrote: > Hi all, > > I want to publish my app on Google play. When I create the signed apk > (with

Re: [android-developers] startService with explicit intent is not working to start framework service.

2015-04-28 Thread Justin Anderson
Ah, that's what I thought. This forum is for developing Android apps. If you are modifying a custom build of Android you would be better of in one of the other forums. On Wed, Apr 29, 2015, 12:59 AM rashmi ks wrote: > Custom build of Android > > On Tue, Apr 28, 2015 at 11:35 PM, J

Re: [android-developers] startService with explicit intent is not working to start framework service.

2015-04-28 Thread Justin Anderson
Are you writing this for a rooted device or for a custom build of Android? On Tue, Apr 28, 2015, 7:10 AM Rashmi wrote: > Hi, > I have added MyService in android/framework/base/services/ space and > registered that service in AndroidManifest.xml > of android/frameworks/base/core/res/. Calling sta

Re: [android-developers] Which activity method is good for a continuous loop?

2015-04-17 Thread Justin Anderson
*"When there is no internet connectivity, the mediaplayer assumes, the mp3 it was playing is finished and performs onComplete method. I had put stopself in onCompletion, so the service is stopping.* *Now, somewhere I would like to have this code that, if the mediaplayer has completed itself (withou

Re: [android-developers] Which activity method is good for a continuous loop?

2015-04-17 Thread Justin Anderson
It sounds like you are trying to fix the symptom of a problem rather than address the actual issue. The real question should be "Why does my service get destroyed?" Have you looked into why your service gets destroyed? What kind of service are you using (hopefully not IntentService)? On Fri, Apr

Re: [android-developers] Signing App

2015-04-17 Thread Justin Anderson
http://lmgtfy.com/?q=android+signed+vs+unsigned+application On Fri, Apr 17, 2015 at 8:08 AM Rahul Kaushik wrote: > Hello Team > > What is the difference between > > android export signed application package or export android application > > which is a better way to sign an app > > Please Sugges

Re: [android-developers] Trying to better understand how to add menu's to the pages within my app

2015-04-13 Thread Justin Anderson
It also seemed like you have dialogs and that from those dialogs you want to be able to navigate to the other screens in the app. If I read that correctly, please don't do that. :-) On Thu, Apr 9, 2015 at 9:35 PM TreKing wrote: > > On Wed, Apr 8, 2015 at 4:07 PM, Daniel Chacon wrote: > >> Look

Re: [android-developers] Trying to better understand how to add menu's to the pages within my app

2015-04-08 Thread Justin Anderson
*"What am i doing wrong that i have to hit back so many times to get back to where i was originally?"* Talk about a loaded question... You are apparently using activities for each of your screens. That is fine, but when you call startActivity() from within another activity that is the default beh

Re: [android-developers] Proper way to setup app to notify user(if opt in) when new items are added to database

2015-04-06 Thread Justin Anderson
That would probably be a push notification On Mon, Apr 6, 2015, 4:23 PM Dan Cha wrote: > So working on a app that will list inventory items for a few users.. IF > the user opts to be notified, what is the proper way to implement such > notifications? > > The app works via a webservice that allow

Re: [android-developers] Which layout(s) can help me ?

2015-04-06 Thread Justin Anderson
*"Sounds like a LinearLayout with vertical orientation. The first item (top image) would have a layout_weight of 0.25 and layout_gravity of center_horizontal, the second (button) a weight of 0.75 and have layout_gravity = center."* I'm not sure he wants that top image to always take up 25% of the

Re: [android-developers] Orientation listener not working in Android Fragment

2014-08-29 Thread Justin Anderson
As I said before... Also, as an FYI, if you provide some code of how you are loading the > fragments, you might get some better info on how to solve your problem. > You are not going to get any help without showing us some code for how you are managing your fragments... Thanks, Justin An

Re: [android-developers] Orientation listener not working in Android Fragment

2014-08-28 Thread Justin Anderson
ut-land)for a single inner fragment. But the device when rotate UI not > change. How can i solve this issue. > See above... Also, as an FYI, if you provide some code of how you are loading the fragments, you might get some better info on how to solve your problem. Thanks, Justin Anderson Mag

Re: [android-developers] BitmapMesh Refreshing

2013-12-12 Thread Justin Anderson
What have you tried so far? Thanks, Justin Anderson MagouyaWare Developer http://sites.google.com/site/magouyaware On Fri, Nov 1, 2013 at 1:21 AM, ashwini vandanapu < ashwini.vandan...@gmail.com> wrote: > Dear All, > > > In my android application, i want t

Re: [android-developers] Status Bar Notification

2013-12-12 Thread Justin Anderson
Complete shot in the dark here... but have you tried giving your notification an id other than 0? Thanks, Justin Anderson MagouyaWare Developer http://sites.google.com/site/magouyaware On Sun, Dec 8, 2013 at 10:51 PM, Rahul Kaushik wrote: > Hi, > > Status bar notififcation is not show

Re: [android-developers] Reverse Fragment Stack Order

2013-12-12 Thread Justin Anderson
What specifically are you trying to accomplish? Maybe there is a better way to get the same effect... Thanks, Justin Anderson MagouyaWare Developer http://sites.google.com/site/magouyaware On Wed, Dec 11, 2013 at 2:58 PM, Alex Fu wrote: > Is there a way to reverse the order in wh

Re: [android-developers] Re: Get Area code (DDD)

2013-12-12 Thread Justin Anderson
http://lmgtfy.com/?q=android+get+phone+number+programmatically Thanks, Justin Anderson MagouyaWare Developer http://sites.google.com/site/magouyaware On Wed, Dec 11, 2013 at 6:41 PM, RichardC wrote: > Most SIMs do not know their own phone number as they do not need that > information

Re: [android-developers] Filename with invalid encoding crashes File.list()

2013-12-12 Thread Justin Anderson
On Thu, Dec 12, 2013 at 5:19 AM, Martin Heller wrote: > Hopefully this issue is resolved soon. > That's a good one... This is Google we are talking about here. :-) Thanks, Justin Anderson MagouyaWare Developer http://sites.google.com/site/magouyaware -- You received this message

Re: [android-developers] how to get item from grid view at specific postion

2013-12-11 Thread Justin Anderson
GridView uses an adapter... all of the changes you are talking about doing should be done in your adapter's getView() method. Thanks, Justin Anderson MagouyaWare Developer http://sites.google.com/site/magouyaware On Wed, Dec 11, 2013 at 10:09 AM, TreKing wrote: > > On Tue, Dec 10,

Re: [android-developers] How to parse this json

2013-12-10 Thread Justin Anderson
> > How to parse this json Write a json parser. Or use an existing parsing library, like gson. Thanks, Justin Anderson MagouyaWare Developer http://sites.google.com/site/magouyaware On Mon, Dec 9, 2013 at 11:53 PM, Arun Kumar K wrote: > [ > [ > &

  1   2   3   4   5   6   7   8   9   10   >