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

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

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

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

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 >

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

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

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.

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

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

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

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

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

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

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

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

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 Justin

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

2016-01-16 Thread Justin Anderson
First thing to check is that you actually have a button_send string defined... You should have a strings.xml file in the res/values folder. Inside there you should see something like this: Send If that string definition exists, then you need to check your package name. The R class... make sure

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

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 >

Re: [android-developers] Creating FrameLayout Programmatically

2016-01-16 Thread Justin Anderson
Without seeing your code, it is virtually impossible to really help. However, that being said, I took the code from the site, ran it, and it looks good to me. One thing I did find interesting though, is that his code doesn't specify which type of LayoutParams he is creating, which means he has an

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

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

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

2016-01-15 Thread Justin Anderson
That's quite the assumption to make... We will help other developers (who are writing their own apps) when they get stuck on something and have a question, but your aren't likely going to find someone who is willing to work for you for free. The vast majority of the users on here have full-time

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)

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 >

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

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

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 >

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

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_

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

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

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

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] 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 pueloce...@gmail.com wrote: I'm mainly a iOS developer, and I have this app that applies a series of

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 pulsarpie...@gmail.com 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

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 webmas...@poliscarhire.com wrote: This configuration cannot be published for

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

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 magouyaw...@gmail.com 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 value

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 jag...@gmail.com wrote: Hi All, I am using Avenir-Light.ttf font in my

Re: [android-developers] Android Application example

2015-07-31 Thread Justin Anderson
Say what? On Thu, Jul 30, 2015, 4:31 PM shiva pendem pendem.shiv...@gmail.com 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

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

2015-07-31 Thread Justin Anderson
1) Create a png of a triangle. 2) Create a state list drawable where the selected state uses that image and the unelected state doesn't (You may want to get more involved and add pissed states). 3) Create a custom layout to inflate for the tab that has a text view and set the bottom drawable of

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 gvi70...@gmail.com wrote: Here is how the UI

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

2015-07-23 Thread Justin Anderson
with the project to have a look and see if you can help me and maybe propose better ways to do it as i am a beginner. Thank you for your help. On 7/23/2015 6:34 PM, Justin Anderson wrote: A fragment is not a Context. Pass in getActivity() instead of this On Thu, Jul 23, 2015, 11:16 AM gvi7

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 gvi70...@gmail.com wrote: I have tried the following https://lh3.googleusercontent.com/-UwZUAdWZliQ/VbETW8LzhcI/Ifk/KfACIlRyDZc/s1600/Untitled.png //NameImg[][] list_NameImg =

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 eazy...@gmail.com wrote: Any update on this issue? I there a workaround at

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 s.seshu...@gmail.com wrote: Hi All, How can we retrieve the list of background runnings apps list in android. currently i am using public ListActivityManager.RunningTaskInfo getRunningTasks (int maxNum). But

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 farp...@gmail.com 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

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 raghu1...@gmail.com 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

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 rkjhaw1...@gmail.com wrote: Hi, i'm facing this error since 3-4 days, what

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 ricardo.c.r.san...@gmail.com 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

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 javabike...@gmail.com wrote: I have a typical master-detail scenario. That is, first activity invokes a list fragment in which I retrieve a list using a

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] 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 jose.gonzale...@gmail.com 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é

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 rista...@gmail.com 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

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] Re: Android studio inished with non-zero exit value 3 error

2015-05-13 Thread Justin Anderson
*Everyone works within time constraints. Do not assume that I have unlimited time to wait.* That is true, but no one made that assumption. Flip that around and you can't assume that people on this forum are here at your beck and call. *I have already done my due diligence.* Great. But that

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 magouyaw...@gmail.com wrote: *Everyone works within time

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 yancheng.ch...@gmail.com wrote: Previously, I had an Android app, which built on the top of ActionBarSherlock.

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 rahulra...@gmail.com wrote: Hi all, I want to publish my app on Google play. When I create the

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

2015-04-29 Thread Justin Anderson
, Justin Anderson magouyaw...@gmail.com wrote: Are you writing this for a rooted device or for a custom build of Android? On Tue, Apr 28, 2015, 7:10 AM Rashmi rashmi@gmail.com wrote: Hi, I have added MyService in android/framework/base/services/ space and registered that service

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 rashmi@gmail.com wrote: Hi, I have added MyService in android/framework/base/services/ space and registered that service in AndroidManifest.xml of

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 rahulkaushi...@gmail.com 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

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

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 treking...@gmail.com wrote: On Wed, Apr 8, 2015 at 4:07 PM, Daniel

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

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 cuban...@gmail.com 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

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 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 MagouyaWare Developer http://sites.google.com/site/magouyaware On Thu, Aug 28, 2014 at 10:45 PM, askl amal...@gmail.com wrote: I've

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 Anderson

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 heller.m...@gmail.comwrote: 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

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 richard.crit...@googlemail.comwrote: Most SIMs do not know their own phone number as they do not need

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 alex.fu...@gmail.com wrote: Is there a way to reverse

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 rahulkaushi...@gmail.comwrote: Hi, Status bar notififcation

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 to apply image warp effect

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 treking...@gmail.com wrote: On Tue

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 arunkuma...@npcompete.netwrote: [ [ strServiceToken

Re: [android-developers] How to access the call history to delete based on variable

2013-12-06 Thread Justin Anderson
-log-in-android-for-particular-number Thanks, Justin Anderson MagouyaWare Developer http://sites.google.com/site/magouyaware On Fri, Dec 6, 2013 at 7:15 AM, Dan Cha cuban...@gmail.com wrote: Im sure there are plenty of apps out there that you can install to manage your calls and that's great

Re: [android-developers] Android problem to use uiautomator.jar

2013-12-06 Thread Justin Anderson
http://lmgtfy.com/?q=android+java.lang.runtimeexception+stub Thanks, Justin Anderson MagouyaWare Developer http://sites.google.com/site/magouyaware On Fri, Dec 6, 2013 at 4:34 AM, 12169 ashish.a...@gmail.com wrote: Hi, I have run the sample code that uses the uiautomator.jar but when i

Re: [android-developers] refactoring activities into drawerlayout?

2013-12-06 Thread Justin Anderson
Change your activities to Fragments. When you select an item in the listview in your drawer layout use the fragment manager to show the appropriate fragment. Since Activity and Fragment lifecycles are so close to each other the conversion process shouldn't be too bad. Thanks, Justin Anderson

  1   2   3   4   5   6   7   8   9   10   >