id
int64
28.5M
73.8M
title
stringlengths
15
150
question_body
stringlengths
69
39.4k
body_text
stringlengths
6
29.2k
tags
stringlengths
7
120
score
int64
-19
384
creation_date
stringlengths
20
24
year
int64
-1
2.02k
month
int64
-1
12
hour
int64
-1
23
dayofweek
int64
-1
6
view_count
int64
3
367k
answer_count
int64
0
34
body_len
int64
6
29.2k
title_len
int64
15
150
tag_count
int64
1
6
code_block_cnt
int64
0
17
has_code
bool
2 classes
is_unanswered
bool
2 classes
is_popular
bool
2 classes
is_viral
bool
2 classes
is_highly_voted
bool
2 classes
is_negative
bool
2 classes
score_bucket
stringclasses
5 values
28,652,550
Unable to update the UI using the message from the handler
<p><em>Hello everyone, I am new to android application development. I have written and code and trying to update the UI from the message obtained from handler. I have tried to debug the code but i couldn't find what the error is. please help me out. Thank you.</em> </p> <pre><code> package com.threadcommunicatione...
Hello everyone, I am new to android application development. I have written and code and trying to update the UI from the message obtained from handler. I have tried to debug the code but i couldn't find what the error is. please help me out. Thank you. [CODE]
android|multithreading|android-layout|android-handler
0
2015-02-21T23:17:49.450Z
2,015
2
23
5
436
2
260
58
4
1
true
false
false
false
false
false
zero
28,652,604
How to get list of data from database to spinner
<p>I want to get all username from my user table to be displayed in my spinner for selection but instead of displaying all username from my list it displays only one which is the first user from my database.. how can i get all username? </p> <pre><code> String q = "SELECT * FROM " + User.TABLE; Cursor cursor = d...
I want to get all username from my user table to be displayed in my spinner for selection but instead of displaying all username from my list it displays only one which is the first user from my database.. how can i get all username? [CODE] thanks in advance..
android|sqlite|android-spinner
0
2015-02-21T23:22:32.950Z
2,015
2
23
5
715
1
260
48
3
1
true
false
false
false
false
false
zero
28,652,614
How to put GLSurfaceView inside a layout on android
<p>I would like to create an app where the glsurfaceview is inside a relative layout together with a listview. While coding, my IDE shows no errors, but once I run the application it just crashes.</p> <p>main.xml</p> <pre><code>&lt;?xml version="1.0" encoding="utf-8"?&gt; &lt;RelativeLayout xmlns:android="http://...
I would like to create an app where the glsurfaceview is inside a relative layout together with a listview. While coding, my IDE shows no errors, but once I run the application it just crashes. main.xml [CODE] MainActivity [CODE] GL_handler [CODE]
java|android|eclipse|opengl-es
0
2015-02-21T23:25:07.017Z
2,015
2
23
5
1,130
1
247
51
4
3
true
false
false
false
false
false
zero
28,652,652
Android: Getting a friend and chat history with him from Facebook messenger
<p>Is it possible to start an intent from my android app to select a friend from Facebook messenger and get the conversation history with him? If yes how such intent should look like? Or do I have to use Facebook SDK for that?</p>
Is it possible to start an intent from my android app to select a friend from Facebook messenger and get the conversation history with him? If yes how such intent should look like? Or do I have to use Facebook SDK for that?
android|facebook|facebook-graph-api|android-intent
0
2015-02-21T23:29:23.557Z
2,015
2
23
5
573
1
223
75
4
0
false
false
false
false
false
false
zero
28,652,665
Any way to get touch coordinates from non-UI thread
<p>If I have an openGL app that has 2 threads (not created by me, these are the standard 'provided' threads). Those being:</p> <ul> <li>GLRendering thread</li> <li>Main / UI thread</li> </ul> <p>And lets say that in my rendering thread I draw a sprite like so: (The methods shown are my own methods)</p> <pre><code>spri...
If I have an openGL app that has 2 threads (not created by me, these are the standard 'provided' threads). Those being: GLRendering thread Main / UI thread And lets say that in my rendering thread I draw a sprite like so: (The methods shown are my own methods) [CODE] Now, on the UI Thread, I capture the current finger ...
android|multithreading
0
2015-02-21T23:31:04.270Z
2,015
2
23
5
73
1
1,701
51
2
2
true
false
false
false
false
false
zero
28,652,673
How to start an Intent with data types other than strings or ints?
<p>I have an app that I control the Sphero with via the Sphero Android SDK and in my MainActivity, I have the user connect the Sphero and that Sphero is hooked to the variable mRobot. I want to create an Intent which I already have in my MainActivity:</p> <pre><code>Intent calibrationIntent = new Intent(MainActivity.t...
I have an app that I control the Sphero with via the Sphero Android SDK and in my MainActivity, I have the user connect the Sphero and that Sphero is hooked to the variable mRobot. I want to create an Intent which I already have in my MainActivity: [CODE] Here, I put the mRobot variable in the putExtra() in the Calibra...
java|android|android-intent
0
2015-02-21T23:32:10.743Z
2,015
2
23
5
130
3
1,166
66
3
4
true
false
false
false
false
false
zero
28,652,689
Insert mirror object using Parse Cloud
<p>I have a scenario where I need to duplicate an object (after or before saving it to Parse) only changing one field. The problem is, I can't figure out how to find the stop condition when saving this new object and the afterSave callback getting called again and again. My object:</p> <pre><code>{ "createdAt"...
I have a scenario where I need to duplicate an object (after or before saving it to Parse) only changing one field. The problem is, I can't figure out how to find the stop condition when saving this new object and the afterSave callback getting called again and again. My object: [CODE] My (try) server code: [CODE] Whic...
android|parse-platform|nosql
1
2015-02-21T23:34:13.237Z
2,015
2
23
5
147
1
385
38
3
3
true
false
false
false
false
false
low
28,652,739
Cannot resolve symbol 'getActivity'
<p>I'm trying to implement a fragment, and am using the <a href="https://developer.android.com/guide/components/fragments.html" rel="nofollow">Android example</a> as a guide.</p> <p>In the onActivityCreated() method of the TitlesFragment class, there is this line:</p> <pre><code>View detailsFrame = getActivity().find...
I'm trying to implement a fragment, and am using the Android example as a guide. In the onActivityCreated() method of the TitlesFragment class, there is this line: [CODE] When I try to include a similar line in my code, I get the error that the 'getActivity' symbol can't be resolved. I've tried importing everything tha...
java|android
0
2015-02-21T23:40:47.020Z
2,015
2
23
5
3,447
1
534
35
2
1
true
false
true
false
false
false
zero
28,652,780
Adsense for mobile or Adsense for content?
<p>I have developed an android app which parses the website content and displays them on mobile by mapping the content to android specific <code>View</code>. Please note that this app is not the optimized version of website.<br> I am thinking to monetize it by using <code>Adsense</code>.<br> But, i am little confused o...
I have developed an android app which parses the website content and displays them on mobile by mapping the content to android specific View . Please note that this app is not the optimized version of website. I am thinking to monetize it by using Adsense . But, i am little confused on which Adsense should I use? Adsen...
android|adsense
0
2015-02-21T23:46:07.003Z
2,015
2
23
5
420
1
366
42
2
0
false
false
false
false
false
false
zero
28,653,054
Call parse.com job from javascript using REST API
<p>As the title says, I'm trying to run a job on parse.com from javascript (specifically an Appcelerator Android app) using the REST API. I'm using REST because this is just for diagnostics and I don't want to deal with trying to get the parse.com javascript API working in Appcelerator. The problem is I cannot get au...
As the title says, I'm trying to run a job on parse.com from javascript (specifically an Appcelerator Android app) using the REST API. I'm using REST because this is just for diagnostics and I don't want to deal with trying to get the parse.com javascript API working in Appcelerator. The problem is I cannot get authent...
android|rest|parse-platform|appcelerator
1
2015-02-22T00:22:00.033Z
2,015
2
0
6
525
1
629
49
4
2
true
false
false
false
false
false
low
28,653,135
Android Studio preDexDebug After Adding jar File
<p>I have a framework of my own that I use for in-class tasks (school class, not Java class), and I made it into a <code>.jar</code> file so that whenever I make changes to the framework, I can just drag and drop it into Android Studio. Everything worked well for the past 5 or so class tasks, and now all of a sudden I'...
I have a framework of my own that I use for in-class tasks (school class, not Java class), and I made it into a .jar file so that whenever I make changes to the framework, I can just drag and drop it into Android Studio. Everything worked well for the past 5 or so class tasks, and now all of a sudden I'm getting a preD...
java|android|jar
5
2015-02-22T00:35:00.900Z
2,015
2
0
6
4,530
1
930
48
3
1
true
false
true
false
false
false
low
28,653,173
2D List with RecyclerView in HorizontalScrollView
<p>I am trying to build a view which will allow the user to scroll an Excel-like structure both horizontally and vertically. My initial idea was to put a RecyclerView (with LinearManager) into a HorizontalScrollView. But it does not seem to work.</p> <p>Here is my code:</p> <pre><code>&lt;RelativeLayout xmlns:an...
I am trying to build a view which will allow the user to scroll an Excel-like structure both horizontally and vertically. My initial idea was to put a RecyclerView (with LinearManager) into a HorizontalScrollView. But it does not seem to work. Here is my code: [CODE] Right now it only allows the Recycler to scroll, the...
android|parallax|horizontalscrollview|android-recyclerview
5
2015-02-22T00:39:29.857Z
2,015
2
0
6
2,596
1
569
49
4
1
true
false
false
false
false
false
low
28,653,269
Image link show well on Laptop, but it not found in Android Phone and iOS Phone
<p>I have a image link in my website here Link: <a href="http://4.bp.blogspot.com/-qn5ZhWnVvWQ/T6SoBT14ZEI/AAAAAAAAE30/lBE7TZsIW4M/s0/HKGH-BLOGTRUYEN.COM-Vol16-Chap104-P00.jpg" rel="nofollow">http://4.bp.blogspot.com/-qn5ZhWnVvWQ/T6SoBT14ZEI/AAAAAAAAE30/lBE7TZsIW4M/s0/HKGH-BLOGTRUYEN.COM-Vol16-Chap104-P00.jpg</a></p> ...
I have a image link in my website here Link: http://4.bp.blogspot.com/-qn5ZhWnVvWQ/T6SoBT14ZEI/AAAAAAAAE30/lBE7TZsIW4M/s0/HKGH-BLOGTRUYEN.COM-Vol16-Chap104-P00.jpg When i show it in a Laptop , it shows well. But when i try to click that link in my Android (and other Android ), other iOS (iPhone, bla bla ). The image no...
android|html|iphone|image|web
-1
2015-02-22T00:54:52.810Z
2,015
2
0
6
70
1
401
79
5
0
false
false
false
false
false
true
negative
28,653,323
how to create a "colour to grayscale image" app using opencv on android
<p>Here is a small piece of code from my android app using Opencv (for Google Glass). I am trying to turn an image (at location picturePath) from colour to grayscale and then overwrite the original colour image. As it stands, this code saves an image in memory that is half grayscale as it should be, and half completely...
Here is a small piece of code from my android app using Opencv (for Google Glass). I am trying to turn an image (at location picturePath) from colour to grayscale and then overwrite the original colour image. As it stands, this code saves an image in memory that is half grayscale as it should be, and half completely bl...
android|opencv|google-glass
0
2015-02-22T01:03:56.117Z
2,015
2
1
6
447
1
1,077
71
3
1
true
false
false
false
false
false
zero
28,653,333
Android Button and ImageButton method
<p>There is any particular way to use Button or imageButton with every Android version ? The code I used to create a Button(I also used an ImageButton) give me crash problem with the emulator of Nexus 5 and Samsung S4 while in Samsung Galaxy Ace it works! The code I used :</p> <pre><code>MyBut.setOnClickListener(new O...
There is any particular way to use Button or imageButton with every Android version ? The code I used to create a Button(I also used an ImageButton) give me crash problem with the emulator of Nexus 5 and Samsung S4 while in Samsung Galaxy Ace it works! The code I used : [CODE] I also used the xml way but with android:o...
java|android|button|imagebutton
0
2015-02-22T01:06:04.657Z
2,015
2
1
6
134
0
489
37
4
3
true
true
false
false
false
false
zero
28,653,362
GridLayout designing custom grids
<p>I am making an app that will feature a <code>GridLayout</code> on the launch and after clicking on any of the tiles it will take a user to a new <code>Activity</code>. I want to make a layout look like this </p> <p><img src="https://i.stack.imgur.com/YrcTsm.png" alt="Sketch Layout"></p> <p>I was wondering how to ...
I am making an app that will feature a GridLayout on the launch and after clicking on any of the tiles it will take a user to a new Activity . I want to make a layout look like this I was wondering how to make the layout look like this. I need 2 TextViews - 1 big and one small and I want my boxes to form a rectangular ...
android|android-custom-view|grid-layout
0
2015-02-22T01:10:33.383Z
2,015
2
1
6
93
1
659
33
3
0
false
false
false
false
false
false
zero
28,653,388
How to make two-way scrollable view in android?
<p>I need to show a big table with two-dimensions scroll, like Excel's sheet. It can be very big, up to 1000 rows (and ~10 columns).</p> <p>So, all the solutions that I have found based on ListView-into-HorizontalScrollView idea. It is too slow to be usable.</p> <p>I tried to use WebView, but it is even slower that s...
I need to show a big table with two-dimensions scroll, like Excel's sheet. It can be very big, up to 1000 rows (and ~10 columns). So, all the solutions that I have found based on ListView-into-HorizontalScrollView idea. It is too slow to be usable. I tried to use WebView, but it is even slower that scrollable-into-scro...
android|excel
0
2015-02-22T01:14:14.340Z
2,015
2
1
6
600
1
491
47
2
0
false
false
false
false
false
false
zero
28,653,462
Issue when trying to receive JSON array response using OkHTTP, PHP, and MySQL in Android
<p>I'm having trouble receving a JSON array response from my server in my Android Application. Currently, my PHP code is as follows:</p> <pre><code> $con = $this-&gt;connect_to_db(); $data = array($userID); $stmt = $con-&gt;prepare("SELECT AccountName, AccountAmount FROM Account WHERE User_idUser = ?;"); ...
I'm having trouble receving a JSON array response from my server in my Android Application. Currently, my PHP code is as follows: [CODE] When echoing to another php file that I call through the command line, I get the whole response correctly, which is (in pretty print): [CODE] However, in my android application, I onl...
php|android|arrays|json|okhttp
3
2015-02-22T01:26:38.863Z
2,015
2
1
6
578
0
607
88
5
4
true
true
false
false
false
false
low
28,653,602
SearchView not getting focus
<p><strong>EDIT</strong> For anyone wondering, my problem was I was using <code>android.widget.SearchView</code> instead of <code>android.support.v7.widget.SearchView</code>. I hope this helps anyone else with the same problem!</p> <p><strong>Original Post</strong></p> <p>I'm trying to implement SearchView in the And...
EDIT For anyone wondering, my problem was I was using android.widget.SearchView instead of android.support.v7.widget.SearchView . I hope this helps anyone else with the same problem! Original Post I'm trying to implement SearchView in the Android ActionBar as per the official guide: http://developer.android.com/trainin...
android|searchview
6
2015-02-22T01:52:39.153Z
2,015
2
1
6
3,872
2
920
28
2
2
true
false
true
false
false
false
medium
28,653,740
Getting a JSONObject from a JSONArray?
<p>I'm trying get a JSONObject from a JSONArray. When I do Log.i display values of JSONArray and has JSONObject that I want. The problem is when I try get this JSONObject, throws an exception show: <code>No value for Local or No value for TipoLocal</code>. Local and TipoLocal are JSONObject into JSONArray.</p> <p>How ...
I'm trying get a JSONObject from a JSONArray. When I do Log.i display values of JSONArray and has JSONObject that I want. The problem is when I try get this JSONObject, throws an exception show: No value for Local or No value for TipoLocal . Local and TipoLocal are JSONObject into JSONArray. How could I do it ? JSON [C...
android|json
0
2015-02-22T02:13:48.923Z
2,015
2
2
6
443
2
342
38
2
2
true
false
false
false
false
false
zero
28,653,921
Questions about retrieving/refreshing data using Volley (and SimpleXML) on Android
<p>All the data my Android app displays is taken from a XML file. I'm using Volley to retrieve the data and SimpleXML to map the XML data to objects using a Volley custom Request: <a href="https://gist.github.com/itsalif/6149365" rel="nofollow"><code>SimpleXmlRequest</code></a>.</p> <p>Every time I refresh the content...
All the data my Android app displays is taken from a XML file. I'm using Volley to retrieve the data and SimpleXML to map the XML data to objects using a Volley custom Request: SimpleXmlRequest . Every time I refresh the content, it reads the whole XML file and creates every single object again and I have the feeling t...
android|android-volley|simple-framework|rx-android
0
2015-02-22T02:44:23.480Z
2,015
2
2
6
269
1
1,432
82
4
0
false
false
false
false
false
false
zero
28,653,943
Android code error. Application stops unexpectedly
<p>I'm having a problem with my code. Whenever I run it, it shows the error error <code>application stopped unexpectedly</code>. I think the issue is caused by some error in the Java class. What exactly is causing this issue?</p> <p>Here is my XML file:</p> <pre><code>&lt;LinearLayout xmlns:android="http://schemas.an...
I'm having a problem with my code. Whenever I run it, it shows the error error application stopped unexpectedly . I think the issue is caused by some error in the Java class. What exactly is causing this issue? Here is my XML file: [CODE] Here is the Java class: [CODE]
java|android|eclipse
-1
2015-02-22T02:48:08.730Z
2,015
2
2
6
44
1
269
50
3
2
true
false
false
false
false
true
negative
28,653,990
Can PN532 with Raspberry Pi send NDEF message to an Android phone with NFC?
<p>I am currently working on a school project that includes NFC communication to send posters (or URL) from PN532 (connected to a Raspberry Pi) to an Android phone.</p> <p>I have been looking for a library where I can implement SNEP/NPP in order to send an NDEF message to an Android phone, like "libllcp" from "libnfc"...
I am currently working on a school project that includes NFC communication to send posters (or URL) from PN532 (connected to a Raspberry Pi) to an Android phone. I have been looking for a library where I can implement SNEP/NPP in order to send an NDEF message to an Android phone, like "libllcp" from "libnfc". However, ...
android|c++|raspberry-pi|ndef|lib-nfc
0
2015-02-22T02:56:35.187Z
2,015
2
2
6
1,763
1
766
75
5
0
false
false
false
false
false
false
zero
28,654,080
onItemClickListener not working for List items (using Fragments)
<p>I am slightly confused as how to make my list items clickable and would appreciate any help on this one.</p> <p>My hierarchy:</p> <p>1 - Activity that has PagerSlidingTabStrip and ViewPager (to show tabs and swipe between Fragments)</p> <pre><code>&lt;RelativeLayout&gt; ... some other stuff ... &lt;Linear...
I am slightly confused as how to make my list items clickable and would appreciate any help on this one. My hierarchy: 1 - Activity that has PagerSlidingTabStrip and ViewPager (to show tabs and swipe between Fragments) [CODE] Depending on which tab is clicked it shows one of the 2 fragments. 2- The fragment that I need...
android|listview
1
2015-02-22T03:14:25.640Z
2,015
2
3
6
225
1
991
64
2
3
true
false
false
false
false
false
low
28,654,110
Google map marker size change upon zoom Level change
<p>Anyways I can allow for Google maps v2 markers to zoom in /zoom out when I I zoom the map? Basically like a circle, the size would change with the zoom level </p> <p>Thanks </p>
Anyways I can allow for Google maps v2 markers to zoom in /zoom out when I I zoom the map? Basically like a circle, the size would change with the zoom level Thanks
android
1
2015-02-22T03:18:15.310Z
2,015
2
3
6
1,524
1
164
52
1
0
false
false
false
false
false
false
low
28,654,185
Loading A Byte Array taking too long?
<p>I hired someone to code my app. It loads a instrumental downloaded from the internet to my app. To download the instrumental it is fast but when loading the instrumental it takes a really long time at least a minute or more. I looked over the code to see where it would be slowing it down but i can't seem to figure...
I hired someone to code my app. It loads a instrumental downloaded from the internet to my app. To download the instrumental it is fast but when loading the instrumental it takes a really long time at least a minute or more. I looked over the code to see where it would be slowing it down but i can't seem to figure it o...
java|android
0
2015-02-22T03:30:24.730Z
2,015
2
3
6
891
2
381
37
2
1
true
false
false
false
false
false
zero
28,654,259
Bring back the Navigation Drawer Indicator with support library v7
<p>I've been working on upgrading my app for Android API 21, and have gotten it mostly working with support library v7. However, because of these changes, the Navigation Drawer Indicator (hamburger menu button) no longer gets displayed.</p> <p>It used to be that the indicator icon was set in the ActionBarDrawerToggle...
I've been working on upgrading my app for Android API 21, and have gotten it mostly working with support library v7. However, because of these changes, the Navigation Drawer Indicator (hamburger menu button) no longer gets displayed. It used to be that the indicator icon was set in the ActionBarDrawerToggle() method, b...
android|android-actionbar|navigation-drawer
0
2015-02-22T03:42:28.287Z
2,015
2
3
6
250
2
604
66
3
1
true
false
false
false
false
false
zero
28,654,302
Android: AnimationSet with multiple animations
<p>When I start the animation with just 1 animation (e.g. slideDownAnimation) then it works perfect. Once I add the second animation, the view gets invisible. </p> <pre><code>animationSet.addAnimation(slideDownAnimation); animationSet.addAnimation(slideUpAnimation); view.startAnimation(animationSet); </code></pre> <p...
When I start the animation with just 1 animation (e.g. slideDownAnimation) then it works perfect. Once I add the second animation, the view gets invisible. [CODE] slidedown.xml [CODE] slideup.xml [CODE]
android
0
2015-02-22T03:49:47.277Z
2,015
2
3
6
1,281
1
202
46
1
3
true
false
false
false
false
false
zero
28,654,333
How to start an activity with a button from a fragment?
<p>I have a fragment that has a floating action button that I want to start an activity when pressed. Here is the code for the fragment I want to launch from:</p> <pre><code>package com.nhscoding.safe2tell; import android.app.Activity; import android.content.Intent; import android.net.Uri; import android.os.Bundle; i...
I have a fragment that has a floating action button that I want to start an activity when pressed. Here is the code for the fragment I want to launch from: [CODE] This returns an error on findViewById because it cannot be used in a fragment, only an activity. Do I need to change this to an activity or is there another ...
android|user-interface|android-fragments|android-studio|findviewbyid
0
2015-02-22T03:54:12.617Z
2,015
2
3
6
1,144
3
343
55
5
1
true
false
false
false
false
false
zero
28,654,378
Android Static Button Listeners
<p>Basically I am trying to setup some button listeners for my fragment_home_screen activity. The only problem I keep running in to is while getting the proper view for instantiating the buttons. You see, the view is in a static class, so when I try to setup button listeners, any inner calls must be to static objects.<...
Basically I am trying to setup some button listeners for my fragment_home_screen activity. The only problem I keep running in to is while getting the proper view for instantiating the buttons. You see, the view is in a static class, so when I try to setup button listeners, any inner calls must be to static objects. My ...
java|android|static
0
2015-02-22T04:00:51.180Z
2,015
2
4
6
1,371
2
609
31
3
3
true
false
false
false
false
false
zero
28,654,511
Can we build android from external Hard Disk
<p>I have less space in my Laptop.. So i am thinking to build android source code from external Hard Disk, which has 1TB of space.. Is it possible to build android source from External HDD.</p>
I have less space in my Laptop.. So i am thinking to build android source code from external Hard Disk, which has 1TB of space.. Is it possible to build android source from External HDD.
android|build|external|hard-drive
3
2015-02-22T04:19:53.293Z
2,015
2
4
6
3,276
1
186
44
4
0
false
false
true
false
false
false
low
28,654,539
How to call method stopAnimator() from onCreate() in activity?The stopAnimator() is present in the recyclerViewHolder class
<p>In Acivity in onCreate() method the code is as shown in below.</p> <pre><code>@Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_recording_list); tplay.setOnClickListener(new View.OnClickListener() { @Override ...
In Acivity in onCreate() method the code is as shown in below. [CODE] The MyViewHolder class is in MyAdapter class(MyViewHolder is inner class of MyAdapter and MyAdapter is inner class of activity).the adapter class code is below: [CODE] Can anybody help me please..!!!!!. The method which i wrote in MyViewHolder class ...
android|oop|android-5.0-lollipop|android-recyclerview
1
2015-02-22T04:24:06.503Z
2,015
2
4
6
66
1
586
123
4
2
true
false
false
false
false
false
low
28,654,576
Android Thread vs AsyncTask vs IntentService called from BLE onCharacteristicChanged()
<p>I have an Android app from which I receive BLE data (every 62ms via notifications). The app can save data via a BufferedWriter to a file. Upon each onCharacteristicChanged() callback, I call either an AsyncTask, Thread or an IntentService to do a file write if the user enabled file save. </p> <p>The AsyncTask seems...
I have an Android app from which I receive BLE data (every 62ms via notifications). The app can save data via a BufferedWriter to a file. Upon each onCharacteristicChanged() callback, I call either an AsyncTask, Thread or an IntentService to do a file write if the user enabled file save. The AsyncTask seems to work fin...
android|multithreading|android-asynctask|bluetooth-lowenergy|intentservice
2
2015-02-22T04:30:26.373Z
2,015
2
4
6
1,491
1
914
86
5
1
true
false
false
false
false
false
low
28,654,589
Reset TextView position in row of Listview for Android Application
<p>I am using ListView to display some data. The data is shown in TextView. String length which is shown can vary. so the textview which is shown changes its positions depending upon the length of the string. The problem I am facing is Suppose there are 5 rows. For Row 3 if the text is long, the position of textview s...
I am using ListView to display some data. The data is shown in TextView. String length which is shown can vary. so the textview which is shown changes its positions depending upon the length of the string. The problem I am facing is Suppose there are 5 rows. For Row 3 if the text is long, the position of textview showi...
android|android-listview
1
2015-02-22T04:32:30.830Z
2,015
2
4
6
167
1
614
66
2
2
true
false
false
false
false
false
low
28,654,655
How to run all AndroidTests with Gradle?
<p>I use Android Studio 1.1.0 and created a new Android project. AS creates this new project with one ApplicationTest. When I call:</p> <pre><code>$ ./gradlew clean createDebugCoverageReport </code></pre> <p>this ApplicationTest is executed. Now I added a new test: </p> <pre><code>public class ActivityTest extends A...
I use Android Studio 1.1.0 and created a new Android project. AS creates this new project with one ApplicationTest. When I call: [CODE] this ApplicationTest is executed. Now I added a new test: [CODE] But this new test isn't executed. Whats going wrong? Both test classes are in the same folder: [CODE] [CODE] [CODE]
android|android-gradle-plugin|android-testing
2
2015-02-22T04:44:44.270Z
2,015
2
4
6
940
2
316
40
3
5
true
false
false
false
false
false
low
28,654,671
Android: why are old PendingIntents not deleted unless I reboot or manually uninstall the app?
<h1>Some background</h1> <p>I have an app that has an ongoing notification. I use <code>NotificationCompat.Builder</code> to create the notification. I call <code>setContentIntent()</code> on the builder to add a <code>PendingIntent</code> to the notification, so that MyActivity runs when I click on the notification...
Some background I have an app that has an ongoing notification. I use NotificationCompat.Builder to create the notification. I call setContentIntent() on the builder to add a PendingIntent to the notification, so that MyActivity runs when I click on the notification. When MyActivity is running, and I click on the ongoi...
android|android-intent|android-studio|alarmmanager|android-pendingintent
0
2015-02-22T04:48:49.677Z
2,015
2
4
6
463
1
2,564
94
5
6
true
false
false
false
false
false
zero
28,654,738
Can not send email from android apps
<p>I want to send an email from android without user interaction. I use this code <a href="https://stackoverflow.com/questions/2020088/sending-email-in-android-using-javamail-api-without-using-the-default-built-in-a/2033124#2033124">Send email from android</a></p> <p>It's running good on my Samsung phone(which version...
I want to send an email from android without user interaction. I use this code Send email from android It's running good on my Samsung phone(which version is 2.3.2 and API label 9). But the same app is not working in my Walton phone (which version is 4.2.2 and API label 17). I use minsdk 8 and targetsdk 19. Here is my ...
java|android|email
0
2015-02-22T05:02:14.400Z
2,015
2
5
6
99
1
340
36
3
1
true
false
false
false
false
false
zero
28,654,778
How to set left margin for RelativeLayout Programmatically Android
<p>I am trying to set the left margin for first <code>RelativeLayout</code>, and I have this <code>xml</code> code:</p> <pre><code>&lt;?xml version="1.0" encoding="utf-8"?&gt; &lt;LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="f...
I am trying to set the left margin for first RelativeLayout , and I have this xml code: [CODE] In this java code insert in LinearLayout with id = market_linear_layout_in_hsv inserting RelativeLayout including some view (Button, TextView, ImageView) : [CODE] But I haven't been able to get this working. Any help is appre...
java|android|android-layout
-1
2015-02-22T05:10:26.673Z
2,015
2
5
6
895
1
400
66
3
3
true
false
false
false
false
true
negative
28,654,795
Reflection from inside Java
<p>I have a Java Library, and I created a Bindings DLL using Xamarin. Everything works, but I have small issue with reflection. Here is the simplified view</p> <p>In Java :</p> <pre><code>JavaClass { public Object delegate; public String methodName; public void executeMethod() { delegate.getClas...
I have a Java Library, and I created a Bindings DLL using Xamarin. Everything works, but I have small issue with reflection. Here is the simplified view In Java : [CODE] In Xamarin: [CODE] This chokes spectacularly, because methodOnMe is not found by Java. Any way how to make this happen?
java|c#|android|xamarin|xamarin-studio
0
2015-02-22T05:12:54.947Z
2,015
2
5
6
58
1
289
27
5
2
true
false
false
false
false
false
zero
28,654,821
Connect to Azure DocumentDB from Android
<p>Has anyone experienced connecting to Azure's documentdb from android? I have tried using the new Java SDK, however it doesn't seem to be supported within android due to some old required Apache dependency conflicts in the core android SDK. I am trying the Rest API method, but it is slow going.</p> <p>Thanks in ad...
Has anyone experienced connecting to Azure's documentdb from android? I have tried using the new Java SDK, however it doesn't seem to be supported within android due to some old required Apache dependency conflicts in the core android SDK. I am trying the Rest API method, but it is slow going. Thanks in advance for any...
android|azure|azure-cosmosdb
4
2015-02-22T05:17:03.660Z
2,015
2
5
6
1,531
1
326
40
3
0
false
false
false
false
false
false
low
28,654,865
Keyboard hides input fields on Android WebView
<p>On my Android app I have an Activity with a layout of almost WebView element. In this WebView I am loading online form for the user to fill out. However, bottom input fields (Text boxes) stay behind the soft keyboard and the user is not able to fill them out.</p> <p>What are possible solutions for this situation?</...
On my Android app I have an Activity with a layout of almost WebView element. In this WebView I am loading online form for the user to fill out. However, bottom input fields (Text boxes) stay behind the soft keyboard and the user is not able to fill them out. What are possible solutions for this situation? Here is my c...
android|webview|android-webview|android-softkeyboard
2
2015-02-22T05:26:11.310Z
2,015
2
5
6
3,587
2
419
46
4
3
true
false
true
false
false
false
low
28,654,932
Setting Retrofit RestAdapter.LogLevel to anything other than FULL results in Empty Response Body
<p>I have the following 3 classes and 1 interface in my project. Setting logging to NONE results in a "success", but with an empty response body (seen in getMovies()->success() below). The URL that is output in that error can be cut &amp; pasted into a browser and it works perfectly. If I change logging to FULL ever...
I have the following 3 classes and 1 interface in my project. Setting logging to NONE results in a "success", but with an empty response body (seen in getMovies()->success() below). The URL that is output in that error can be cut & pasted into a browser and it works perfectly. If I change logging to FULL everything wor...
android|json|rest|gson|retrofit
4
2015-02-22T05:41:07.303Z
2,015
2
5
6
839
1
406
96
5
1
true
false
false
false
false
false
low
28,655,034
Make Image Button Behave Like a Toggle Button
<p>How can I have an on and off state for an Image Button? My goal is to have sound play when the image button is clicked, and for sound to stop when the button is clicked again. Thank you!</p>
How can I have an on and off state for an Image Button? My goal is to have sound play when the image button is clicked, and for sound to stop when the button is clicked again. Thank you!
java|android|image|button|toggle
0
2015-02-22T05:58:15.880Z
2,015
2
5
6
1,351
3
186
45
5
0
false
false
false
false
false
false
zero
28,655,152
How to Add JAR (HTMLCleaner) to Project in Android Studio 1.1?
<p>I've spent countless hours trying to add a simple JAR (HTMLCleaner) to my project in Android Stuio 1.1 to no avail. I imported the JAR as a module through the interface (File > New Module > Import JAR...), added it as a dependency on my app module, and even reference it in my AndroidManifest.xml &lt;uses-library etc...
I've spent countless hours trying to add a simple JAR (HTMLCleaner) to my project in Android Stuio 1.1 to no avail. I imported the JAR as a module through the interface (File > New Module > Import JAR...), added it as a dependency on my app module, and even reference it in my AndroidManifest.xml <uses-library etc...>. ...
java|android|import|android-studio|htmlcleaner
0
2015-02-22T06:19:09.010Z
2,015
2
6
6
2,298
3
595
62
5
0
false
false
false
false
false
false
zero
28,655,277
Layout weight in nested linear layout
<p>So I want to have 6 buttons in a tic tac toe layout, for which I'm using nested linear layouts.</p> <p>This is the xml file for the layout:</p> <pre><code> &lt;LinearLayout xmlns:android=&quot;http://schemas.android.com/apk/res/android&quot; xmlns:tools=&quot;http://schemas.android.com/tools&quot; android:lay...
So I want to have 6 buttons in a tic tac toe layout, for which I'm using nested linear layouts. This is the xml file for the layout: [CODE] However, this renders the following screen: How do I get the buttons to resize so that each row takes up an equal amount of space as the others, without any margins as is there in ...
android|android-layout
1
2015-02-22T06:41:33.773Z
2,015
2
6
6
937
2
409
37
2
1
true
false
false
false
false
false
low
28,655,344
NineOldAndroids library for Drag/Drop in android
<p>i want to use Drag-and-Drop in my app. so I should use Nine Old Androids Library. I searchrd in GitHub and found out this solution: <a href="https://github.com/JakeWharton/NineOldAndroids" rel="nofollow">https://github.com/JakeWharton/NineOldAndroids</a> I also download "Nine Old Androids.2.4.0.jar" from this site. ...
i want to use Drag-and-Drop in my app. so I should use Nine Old Androids Library. I searchrd in GitHub and found out this solution: https://github.com/JakeWharton/NineOldAndroids I also download "Nine Old Androids.2.4.0.jar" from this site. and import this jar file to my app. but it doesn't work. does"dependency" need?...
android|api|drag-and-drop
2
2015-02-22T06:53:21.377Z
2,015
2
6
6
244
1
371
48
3
0
false
false
false
false
false
false
low
28,655,356
How do i include icon in android studio like we used to do in eclipse before starting the project?
<p>I tried making a project on android studio.. but didn't find similar to eclipse. Icon option does not appear in the starting the project.</p>
I tried making a project on android studio.. but didn't find similar to eclipse. Icon option does not appear in the starting the project.
android|android-studio
0
2015-02-22T06:55:05.107Z
2,015
2
6
6
46
2
137
98
2
0
false
false
false
false
false
false
zero
28,655,361
Accessibility app for android that runs on top of all other applications and can intervene and send touch/tap events to views of other apps
<p>I have been trying to design an accessibility application for android for disabled people like that of ios7 switch control point mode. The biggest problem I am facing is how would I make an activity that would appear over all applications and takes switch events and send touch/tap events accordingly to any app over ...
I have been trying to design an accessibility application for android for disabled people like that of ios7 switch control point mode. The biggest problem I am facing is how would I make an activity that would appear over all applications and takes switch events and send touch/tap events accordingly to any app over whi...
android|overlay|accessibility
1
2015-02-22T06:55:35.030Z
2,015
2
6
6
1,768
1
542
139
3
0
false
false
false
false
false
false
low
28,655,442
I want to have a RelativeLayout and LinearLayout in the same layout
<p><a href="http://i.stack.imgur.com/Utrxn.png" rel="nofollow">http://i.stack.imgur.com/Utrxn.png</a></p> <p>I made a picture showing what I want my layout to look like. Basically it's a RelativeLayout on top of a LinearLayout. I set the layout_weight=3 for relative, and layout_weight=1 for linear. This is not working...
http://i.stack.imgur.com/Utrxn.png I made a picture showing what I want my layout to look like. Basically it's a RelativeLayout on top of a LinearLayout. I set the layout_weight=3 for relative, and layout_weight=1 for linear. This is not working so far. Can anyone tell me whats wrong with my XML? [CODE]
android|android-layout
0
2015-02-22T07:12:00.497Z
2,015
2
7
6
88
1
304
67
2
1
true
false
false
false
false
false
zero
28,655,457
Android: How to avoid restart after Animation finish?
<p>the image will go back to 0,0 after animation finish how to set not go back? still stay in 100,100</p> <pre><code>Animation am = new TranslateAnimation((float)0(), (float)100, (float)0,(float)100); am.setDuration(5000); am.setRepeatCount(0); point.startAnimation(am); </code></pre>
the image will go back to 0,0 after animation finish how to set not go back? still stay in 100,100 [CODE]
android|animation|imageview
2
2015-02-22T07:14:41.203Z
2,015
2
7
6
534
1
105
53
3
1
true
false
false
false
false
false
low
28,655,532
how to set the delete method in sqlite database correctly?
<p>I have a database called "Users" and a table in that database called "contact". i want to delete a selected contact when I click a button. I want to know how to set the parameters correctly to the delete method. if somebody can gimme an answer with a little example i will be delighted .</p> <p>my code goes like thi...
I have a database called "Users" and a table in that database called "contact". i want to delete a selected contact when I click a button. I want to know how to set the parameters correctly to the delete method. if somebody can gimme an answer with a little example i will be delighted . my code goes like this [CODE] I ...
android|sqlite
-1
2015-02-22T07:26:02.743Z
2,015
2
7
6
285
2
420
58
2
1
true
false
false
false
false
true
negative
28,655,574
Year storage in Date type field
<h2>Android</h2> <p>Can anybody tell can we Insert only "<strong>year</strong>" in Date type field in <em>SQLite</em> database in android.</p> <hr> <p>Thanks</p>
Android Can anybody tell can we Insert only " year " in Date type field in SQLite database in android. Thanks
android
-2
2015-02-22T07:31:45Z
-1
-1
-1
-1
27
1
109
31
1
0
false
false
false
false
false
true
negative
28,655,581
Android - Using a custom image for GoogleMap overlay
<p>How to use a custom image as an overlay for GoogleMap?</p> <p>I am in an android pilgrimage of making an app which uses a custom map for a specific place (Yeah.. Because google satelite view isn't good enough..).</p> <p>Do I have to use Drawable?</p>
How to use a custom image as an overlay for GoogleMap? I am in an android pilgrimage of making an app which uses a custom map for a specific place (Yeah.. Because google satelite view isn't good enough..). Do I have to use Drawable?
android|google-maps
0
2015-02-22T07:33:07.997Z
2,015
2
7
6
667
1
232
52
2
0
false
false
false
false
false
false
zero
28,655,585
Cannot copy the database from raw resource folder
<p>in a project, I would like to copy the sqlite db from the folder:</p> <blockquote> <p>/res/raw</p> </blockquote> <p>to the folder:</p> <blockquote> <p>/data/data/{package_name}/databases/</p> </blockquote> <p>like it said in the this <a href="https://stackoverflow.com/questions/6540906/simple-export-and-impo...
in a project, I would like to copy the sqlite db from the folder: /res/raw to the folder: /data/data/{package_name}/databases/ like it said in the this link . And it doesn't make the copy on the destination folder. Here is my code: MainActivity.java: [CODE] MySQLiteHelper.java: [CODE] On my logcat i am gettin false all...
java|android|sqlite
1
2015-02-22T07:33:52.813Z
2,015
2
7
6
1,548
2
405
49
3
3
true
false
false
false
false
false
low
28,655,604
How to pass value to flag enum parameter in Soap service (ASMX service) From android app
<p>I wanna call a soap web service in an android app which it's need a enum value as parameter which it's a flag enum. How can I pass some value as a flag enum to this web service method from android app?</p> <p>I use Ksoap for calling soap service.</p> <p>It's web service method:</p> <pre><code>[WebMethod] publ...
I wanna call a soap web service in an android app which it's need a enum value as parameter which it's a flag enum. How can I pass some value as a flag enum to this web service method from android app? I use Ksoap for calling soap service. It's web service method: [CODE] and web service enum: [CODE] finally me code for...
android|web-services|soap|enums|asmx
4
2015-02-22T07:36:51.370Z
2,015
2
7
6
1,197
2
344
88
5
3
true
false
false
false
false
false
low
28,655,620
Test the web site on mobile using appium
<p>I want to use Appium to test the web site on mobile. I have setup following thing</p> <ol> <li>Latest Appium</li> <li>Android SDK</li> <li>TestNG</li> <li>Java-client 2.1</li> <li>Java1.7</li> <li>Selenium 2.42 and selenium standalone 2.42</li> </ol> <p>Environment variable is set for tools and platform-tools, Jav...
I want to use Appium to test the web site on mobile. I have setup following thing Latest Appium Android SDK TestNG Java-client 2.1 Java1.7 Selenium 2.42 and selenium standalone 2.42 Environment variable is set for tools and platform-tools, Java and appium Appium is starting but when i hit http://127.0.0.1:4723/wd/hub/ ...
android|selenium|appium
1
2015-02-22T07:39:48.803Z
2,015
2
7
6
460
1
630
40
3
5
true
false
false
false
false
false
low
28,655,683
Do I need to add many methods, or is it possible to call one method
<p>I have a tic tac toe app, and I want to know whether it is possible to set all the tic tac toe buttons to one on_click event, and then create a variable to get the ID of the button clicked, then pass it as a parameter to another method which will do the actual functionality, OR do I need to create different on_click...
I have a tic tac toe app, and I want to know whether it is possible to set all the tic tac toe buttons to one on_click event, and then create a variable to get the ID of the button clicked, then pass it as a parameter to another method which will do the actual functionality, OR do I need to create different on_click ev...
java|android|logic
0
2015-02-22T07:48:25.393Z
2,015
2
7
6
49
3
341
67
3
0
false
false
false
false
false
false
zero
28,655,716
the number of cpus of the virtual device has been forced to be 1
<p>I'm running the genymotion virtual device and when I start it, it gives me caution <img src="https://i.stack.imgur.com/0THgP.png" alt="enter image description here"></p> <p>What is this caution mean and how to solve it? </p> <p>Thanks in advance.</p>
I'm running the genymotion virtual device and when I start it, it gives me caution What is this caution mean and how to solve it? Thanks in advance.
android|genymotion
3
2015-02-22T07:53:30.037Z
2,015
2
7
6
4,037
1
148
64
2
0
false
false
true
false
false
false
low
28,655,720
File Input field sencha touch does not show phone memory browse option in android 4.1.2
<p>I am using sencha touch to write a hybrid app for android. I have a screen wherein user can upload a file from their device. I am using sencha touch's filefield to open the file browser for user. Below is the code for the view</p> <pre><code>Ext.define('BikeApp.view.FileUploadView', { extend: 'Ext.Container', ...
I am using sencha touch to write a hybrid app for android. I have a screen wherein user can upload a file from their device. I am using sencha touch's filefield to open the file browser for user. Below is the code for the view [CODE] The issue i am facing is that on one of the android devices (Samsung Galaxy Chat) whic...
android|file-upload|sencha-touch-2|hybrid-mobile-app
2
2015-02-22T07:53:38.753Z
2,015
2
7
6
383
0
853
87
4
1
true
true
false
false
false
false
low
28,655,749
Android Location API using Google Play Services
<p>I use to implement location fonder using with Android developer tutorial "<a href="https://developer.android.com/training/location/index.html" rel="nofollow">https://developer.android.com/training/location/index.html</a>".my application is running but didn't find the location.</p> <p>it is break <code>@Override</c...
I use to implement location fonder using with Android developer tutorial " https://developer.android.com/training/location/index.html ".my application is running but didn't find the location. it is break @Override [CODE] with here and show no_location_detect .please guild me to solve this problem
java|android|google-maps-api-3
0
2015-02-22T07:56:43.200Z
2,015
2
7
6
135
1
297
47
3
1
true
false
false
false
false
false
zero
28,655,774
Android two MediaPlayers at the same time skipping
<p>I have an app which plays two videos at the same time. On a MotoG (Android 4.4.4) if the app is playing two videos which were generated on an Android device, it works fine. If it is playing a single video generated on iOS, it works fine.</p> <p>But if it is playing 1 video generated on iOS and a second video from e...
I have an app which plays two videos at the same time. On a MotoG (Android 4.4.4) if the app is playing two videos which were generated on an Android device, it works fine. If it is playing a single video generated on iOS, it works fine. But if it is playing 1 video generated on iOS and a second video from either iOS o...
android|video|android-mediaplayer|video-processing
0
2015-02-22T08:00:35.173Z
2,015
2
8
6
169
1
2,209
50
4
0
false
false
false
false
false
false
zero
28,655,850
how to hide an item from gridView, Without remaining empty space
<p>hello mates hope you having a nice day,i have an asyncTask that fills Up my gridView's getItem() . . .</p> <pre><code> } else { holder = (ViewHolder) convertView.getTag(); } new ItemFiller(tempCache, convertView, holder.date, holder.iv, holder.username, holder.company, holder.lmcp, ...
hello mates hope you having a nice day,i have an asyncTask that fills Up my gridView's getItem() . . . [CODE] but in some conditions that will be investigated in the asynctask, i need the item to be totally hidden or be removed from my gridview, so i tried to use [CODE] item is hidden but its empty remnant is still the...
android|gridview
0
2015-02-22T08:11:10.273Z
2,015
2
8
6
601
1
401
64
2
3
true
false
false
false
false
false
zero
28,655,929
What is causing the Rendering Problems : Couldn't resolve resource error in Android Studio 1.1.0?
<p>I was looking into the Android Studio, and was trying out some basic app development. The learning material I was using is based on an older version of Android Studio which is still in beta stage, and I wanted to check out the latest version, 1.1.0. In version 1.1.0, I run into an error when trying to change the pre...
I was looking into the Android Studio, and was trying out some basic app development. The learning material I was using is based on an older version of Android Studio which is still in beta stage, and I wanted to check out the latest version, 1.1.0. In version 1.1.0, I run into an error when trying to change the previe...
android|resources|rendering
2
2015-02-22T08:25:37.027Z
2,015
2
8
6
5,575
1
620
97
3
0
false
false
true
false
false
false
low
28,655,987
Android Google Map xml R.id undefined in fragment
<p>I`m developing an application that uses an activity with navigation drawer. I have two fragments in the drawer one of which is a google map.</p> <p>In the map fragment class I want to initialize the GoogleMap object to do some things to the map, but in the onCreateView after I initialize the view through inflater, ...
I`m developing an application that uses an activity with navigation drawer. I have two fragments in the drawer one of which is a google map. In the map fragment class I want to initialize the GoogleMap object to do some things to the map, but in the onCreateView after I initialize the view through inflater, my app does...
android|google-maps|android-layout|android-fragments
1
2015-02-22T08:35:57.033Z
2,015
2
8
6
263
1
685
49
4
5
true
false
false
false
false
false
low
28,656,028
How to turn on FlashLight in Lollipop programmatically Android
<pre><code>Camera cam = Camera.open(); Parameters p = cam.getParameters(); p.setFlashMode(Parameters.FLASH_MODE_TORCH); cam.setParameters(p); cam.startPreview(); </code></pre> <p>The above dose not work on Lollipop, Because Camera is deprecated in Lollipop. I cant able to find any other way to turn on flash progr...
[CODE] The above dose not work on Lollipop, Because Camera is deprecated in Lollipop. I cant able to find any other way to turn on flash programmatically in Lollipop. How can I achieve this. Thanks in advance.
android
9
2015-02-22T08:43:16.897Z
2,015
2
8
6
15,038
3
209
62
1
1
true
false
true
true
false
false
medium
28,656,037
launch a app splash screen everytime we click a app icon from home screen
<h2>What is happening:</h2> <ul> <li>Currently when i click the app icon for the first time i am loading <code>SplashActivity</code> and then loading <code>ActAtomicGodDetailDesc</code></li> <li>Now when i minimize the app -- > then go to home screen -- > then click on the app icon again <code>ActAtomicGodDetailDesc</...
What is happening: Currently when i click the app icon for the first time i am loading SplashActivity and then loading ActAtomicGodDetailDesc Now when i minimize the app -- > then go to home screen -- > then click on the app icon again ActAtomicGodDetailDesc is displaying instead of SplashActivity What i want: Everytim...
android
2
2015-02-22T08:45:06.417Z
2,015
2
8
6
3,118
1
454
73
1
1
true
false
true
false
false
false
low
28,656,065
trouble in tabwidget android id
<p>I am working in android studio. Here, I have a in my main.xml. When the android:id attribute is set to "@+id/tabs", I get an error "cannot resolve directory @+id". </p> <pre><code> &lt;LinearLayout android:layout_width="fill_parent" android:layout_height="fill_parent" android:or...
I am working in android studio. Here, I have a in my main.xml. When the android:id attribute is set to "@+id/tabs", I get an error "cannot resolve directory @+id". [CODE] I think, i have made some sort of reference to some file from this text"@+id/tabs", where AS gives code completion options to select from the data is...
android|xml|tabs|android-studio
0
2015-02-22T08:48:24.270Z
2,015
2
8
6
37
0
421
31
4
1
true
true
false
false
false
false
zero
28,656,084
Online/Offline Image Management Strategy
<p>I am working on an app that will <em>get data and images from the <code>webservice</code> and store it in device for offline usage</em>. At the same time the application will have some data stored in <code>sqlite db</code> and some images as the default data. </p> <p><strong>Here is the flow of app:</strong></p> <...
I am working on an app that will get data and images from the webservice and store it in device for offline usage . At the same time the application will have some data stored in sqlite db and some images as the default data. Here is the flow of app: When the application opens it will grab the data from Sqlite Db and i...
android|image|web-services|sqlite|drawable
2
2015-02-22T08:52:56.150Z
2,015
2
8
6
754
1
1,733
40
5
1
true
false
false
false
false
false
low
28,656,150
html 5 video - cross platform
<p>I have problem with html 5 video tag, I try this code:</p> <pre><code>&lt;video id="SrcVideo" width="100%" height="240" style="max-width:460px; width:98%;" autoplay="true" poster="sound_icon.jpg"&gt; &lt;source style="width: 100%;" src="MyVid.m4v"&gt; &lt;source style="width: 100%;" src="MyVid.m4v" type="vi...
I have problem with html 5 video tag, I try this code: [CODE] It seems to be working on iPhone, And on Android's chrome and dolphin, But on the stock android browser it doesn't work, I can hear the audio but can't see the video. I have used this guide to encode the video correctly: http://www.broken-links.com/2010/07/0...
android|html|html5-video
1
2015-02-22T09:00:26.613Z
2,015
2
9
6
193
0
364
29
3
1
true
true
false
false
false
false
low
28,656,174
Pubnub GCM and Parse notifications not working together
<p>I'm working on app, using <strong>Parse push notifications</strong> and <strong>Pubnub notification</strong>. I need GCM registration id for <strong>Pubnub</strong>, so when I register gcm and get the reg_id and subscribe for <strong>Pubnub channels</strong>, <strong>Pubnub</strong> starts working, but <strong>Pars...
I'm working on app, using Parse push notifications and Pubnub notification . I need GCM registration id for Pubnub , so when I register gcm and get the reg_id and subscribe for Pubnub channels , Pubnub starts working, but Parse stops working and when I use Parse's device token as Pubnub's reg_id then I don't receive Pu...
android|parse-platform|push-notification|pubnub
1
2015-02-22T09:03:44.790Z
2,015
2
9
6
237
0
577
55
4
0
false
true
false
false
false
false
low
28,656,186
Native file watcher executable is outdated warning in Android Studio
<p>Am getting this warning in Android Studio</p> <blockquote> <p>External file changes sync may be slow. Native fille watcher executable is outdated</p> </blockquote> <p><img src="https://i.stack.imgur.com/aCvlF.png" alt="enter image description here"></p> <p>I checked for updates, used the <code>Install and R...
Am getting this warning in Android Studio External file changes sync may be slow. Native fille watcher executable is outdated I checked for updates, used the Install and Restart option, but Android studio just disappears afterwards.When I restart my computer I still get the same warning and the update is not effected. ...
intellij-idea|android-studio
3
2015-02-22T09:05:08.173Z
2,015
2
9
6
3,217
1
378
68
2
0
false
false
true
false
false
false
low
28,656,247
Contents of textView change when contents are selectable
<p>I am currently working on a project which requires me to dynamically add textView objects to a LinearLayout based on the contents of an array.</p> <pre><code>chapter = Home.chapters.get(index); layout.removeAllViews(); String dataText = chapter.content; String[] dataArray = dataText.split("~"); for ...
I am currently working on a project which requires me to dynamically add textView objects to a LinearLayout based on the contents of an array. [CODE] I have configured saveOnItemStateChanged in order to restore the correct contents of the textViews when the screen is rotated. [CODE] However, whenever the screen is rota...
android|android-layout|textview|screen-rotation
1
2015-02-22T09:13:30.443Z
2,015
2
9
6
62
2
973
56
4
2
true
false
false
false
false
false
low
28,656,269
TimePicker not displaying on android 4.4.2 - screenshots attached
<p>I have 2 phones, a Nexus 4 with Android 5.0.1, and an LG f60 with Android 4.4.2 on it.</p> <p>I have a custom dialog with this layout: </p> <pre><code>&lt;LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/linearLayout1" android:layout_width="fill_parent" android:layout_height...
I have 2 phones, a Nexus 4 with Android 5.0.1, and an LG f60 with Android 4.4.2 on it. I have a custom dialog with this layout: [CODE] java: [CODE] and it displays correctly on Nexus 4, but something is wrong with the TimePicker on the LG f60. Here are the screenshot: What could be the problem? Thanks in advance!
android|dialog|styles|android-4.4-kitkat|timepicker
0
2015-02-22T09:16:05.167Z
2,015
2
9
6
528
1
314
65
5
2
true
false
false
false
false
false
zero
28,656,307
Couldn't resolve resource @drawable/homebackground
<p>I created a new project in <strong>Android Lollipop</strong> (API 21) using Studio(64) and Java 7. When I try to add a background on main layout (relative layout) I am getting error</p> <p><img src="https://i.stack.imgur.com/ESHqn.png" alt="enter image description here"></p> <p>My res folder structure is </p> <p>...
I created a new project in Android Lollipop (API 21) using Studio(64) and Java 7. When I try to add a background on main layout (relative layout) I am getting error My res folder structure is NOTE: I have placed 720x1280 img in all drawable* folders. My XML is [CODE] I tried using PNG / JPG.. but still I am getting sam...
android|android-drawable
6
2015-02-22T09:22:17.547Z
2,015
2
9
6
6,726
3
619
50
2
1
true
false
true
false
false
false
medium
28,656,398
How do I execute a shell file?
<p>I'm trying to download Whatsapp on my laptop. I am using Ubuntu desktop software. I've installed Android Emulator from <a href="http://dl.google.com/android/android-sdk_r16-linux.tgz" rel="nofollow">http://dl.google.com/android/android-sdk_r16-linux.tgz</a> I unzipped the file, opened the folder, Android-sdk-linux, ...
I'm trying to download Whatsapp on my laptop. I am using Ubuntu desktop software. I've installed Android Emulator from http://dl.google.com/android/android-sdk_r16-linux.tgz I unzipped the file, opened the folder, Android-sdk-linux, opened Tools and now I'm supposed to execute the file Android, and I'm not sure how to ...
android|linux|ubuntu|execute|whatsapp
0
2015-02-22T09:34:36.050Z
2,015
2
9
6
256
4
542
30
5
0
false
false
false
false
false
false
zero
28,656,403
Is it possible to send parameter of a weblink as data to an Android app?
<p>Is it possible to send parameter of a weblink as data to an <a href="/questions/tagged/android" class="post-tag" title="show questions tagged 'android'" rel="tag"><img src="//i.stack.imgur.com/tKsDb.png" height="16" width="18" alt="" class="sponsor-tag-img">android</a> app when clicked in Android web browser? For ex...
Is it possible to send parameter of a weblink as data to an android app when clicked in Android web browser? For example: User opens Firefox browser in Android device. Navigates to a website. Clicks a link in that website and that link opens the related app in device and sends parameter of the link as data to app. Than...
android|parameter-passing
0
2015-02-22T09:35:04.727Z
2,015
2
9
6
76
0
334
72
2
0
false
true
false
false
false
false
zero
28,656,414
Unfortunately App has stopped (Android Studio)
<p>I dont know why this message is coming ... the app is opening fine but as soon as I change the seekbars in the app the message pops up and app stops. </p> <p>I am using a blank activity and m posting the <em>.xml</em> and <em>.java</em> files.Please reply. </p> <p><strong>linearlayout.xml</strong></p> <pre><cod...
I dont know why this message is coming ... the app is opening fine but as soon as I change the seekbars in the app the message pops up and app stops. I am using a blank activity and m posting the .xml and .java files.Please reply. linearlayout.xml [CODE] AndroidManifest.xml [CODE] MainActivity.java [CODE] logcat [CODE]
android|xml
-1
2015-02-22T09:37:29.373Z
2,015
2
9
6
1,097
1
320
46
2
4
true
false
false
false
false
true
negative
28,656,459
How to make "tilt phone" action? Android App
<p>I am making an app where I would need an "tilt" action or how should I say it. The best way to explain what I need would be to look at Ellen DeGeneres app HeadsUp! In the game if you tilt you phone up it passes the word and if you tilt phone down it is correct. Hope you undestand what I need. I really don't know how...
I am making an app where I would need an "tilt" action or how should I say it. The best way to explain what I need would be to look at Ellen DeGeneres app HeadsUp! In the game if you tilt you phone up it passes the word and if you tilt phone down it is correct. Hope you undestand what I need. I really don't know how to...
android
-5
2015-02-22T09:43:42.727Z
2,015
2
9
6
2,076
1
510
44
1
0
false
false
false
false
false
true
negative
28,656,506
Do I actually need google-play-services_lib in project to use google cloud messaging?
<p>Can I only use Google Cloud Messaging in my app while having its google-play-services_lib in the project? or are there other ways</p>
Can I only use Google Cloud Messaging in my app while having its google-play-services_lib in the project? or are there other ways
android
1
2015-02-22T09:49:39.733Z
2,015
2
9
6
28
2
129
85
1
0
false
false
false
false
false
false
low
28,656,571
How to see query exceptions in LoaderManager.LoaderCallbacks<Cursor>.onLoadFinished()
<p>Say something goes wrong in a Content Provider:</p> <pre><code>public class MyProvider extends ContentProvider { // ... @Override public Cursor query(...) { throw new Exception("message"); } } </code></pre> <p>and we are using <code>getLoaderManager().initLoader(...)</code> and <code>CursorLoader<...
Say something goes wrong in a Content Provider: [CODE] and we are using getLoaderManager().initLoader(...) and CursorLoader to use this Content Provider. I understand that Cursor will be null when an exception occurs but how to receive more information about the exception? [CODE]
android|android-contentprovider
2
2015-02-22T09:59:05.773Z
2,015
2
9
6
74
0
280
85
2
2
true
true
false
false
false
false
low
28,656,597
Android Volley - HttpResponseCache
<p>I'm building an Android application which uses Volley to load images from the web.</p> <p>I'm using an <code>LruCache</code> with Volley to cache bitmaps in memory, and this is fine. In addition, I'd like Volley to leverage the built in support for http disk based caching using <a href="http://developer.android.com...
I'm building an Android application which uses Volley to load images from the web. I'm using an LruCache with Volley to cache bitmaps in memory, and this is fine. In addition, I'd like Volley to leverage the built in support for http disk based caching using HttpResponseCache . I implemented the example in the given li...
android|caching|httpurlconnection|android-volley
4
2015-02-22T10:02:21.963Z
2,015
2
10
6
283
0
881
34
4
1
true
true
false
false
false
false
low
28,656,643
Android NavigationDrawer lagging while opening and closing
<p>I have activity with NavigationDrawer. When I click on icon in ActionBar, NavigationBar opens, but with lags. Identical is with closing. I used this tutorial: <a href="https://www.youtube.com/watch?v=6f6sbtgd6v0" rel="nofollow">https://www.youtube.com/watch?v=6f6sbtgd6v0</a> How to remove lags?</p> <pre><code> d...
I have activity with NavigationDrawer. When I click on icon in ActionBar, NavigationBar opens, but with lags. Identical is with closing. I used this tutorial: https://www.youtube.com/watch?v=6f6sbtgd6v0 How to remove lags? [CODE]
android|navigation-drawer|lag
1
2015-02-22T10:07:57.697Z
2,015
2
10
6
5,863
2
229
58
3
1
true
false
true
false
false
false
low
28,656,664
How to pass data from a background Service/thread and get notification for it?
<p><strong>Console.class:</strong></p> <pre><code>public class Console extends Activity implements Handler.Callback{ /** * @version 1.1 (28.01.2013) * http://english.cxem.net/arduino/arduino5.php * @author Koltykov A.V. (�������� �.�.) * */ // Store the curren...
Console.class: [CODE] ConnectedThread.class: [CODE] MyApplication.class: [CODE] aa.class: [CODE] ConnectThread.class: [CODE]
android|bluetooth
0
2015-02-22T10:11:04.703Z
2,015
2
10
6
550
1
124
78
2
5
true
false
false
false
false
false
zero
28,656,749
Java set value in array get ArrayIndexOutOfBoundsException error
<p>in my application i have this Arrays:</p> <pre><code>private static String[] I_DAYS; private static String[] I_MONTH = { "31", "31", "31", "31", "31", "31", "30", "30", "30", "30", "30", "29" }; </code></pre> <p>by this below codes i can set value into array:</p> <pre><code>int currentDay = Integer.parseInt(SDate...
in my application i have this Arrays: [CODE] by this below codes i can set value into array: [CODE] in first time i dont have problem, i want to set other value into this array, but in this time I_DAYS array lenght maybe random and i want to set value into that by : [CODE] unfortunately i get error when i try to set va...
java|android
0
2015-02-22T10:23:13.033Z
2,015
2
10
6
299
2
484
64
2
4
true
false
false
false
false
false
zero
28,656,771
How to run several commands using ssh and android in only one session?
<p>I've used this <a href="https://stackoverflow.com/questions/14323661/simple-ssh-connect-with-jsch?rq=1&amp;newreg=f457fbe7ed3a4f0ea535508a2fec84a5">SSH with JSCH</a> in my android project. But I want to run two commands for example:</p> <pre><code>$ cd Desktop $ ls </code></pre> <p>I<code>ve already tried to appe...
I've used this SSH with JSCH in my android project. But I want to run two commands for example: [CODE] I ve already tried to append more strings in one Method but it didn t help... so how can I do this?
android|ssh
1
2015-02-22T10:25:16.797Z
2,015
2
10
6
120
1
202
70
2
1
true
false
false
false
false
false
low
28,656,791
Titanium Appcelerator custom android MainActivity
<p>The idea is to replace the default splash screen in Titanium with a native one in android.</p> <p>I created the SplashActivity.java and placed it in the <code>"Platform-&gt;android-&gt;src-&gt;com-&gt;example-&gt;app"</code></p> <p>Then created the custom <code>AndroidManifest.xml</code> in <code>"Platform-&gt;an...
The idea is to replace the default splash screen in Titanium with a native one in android. I created the SplashActivity.java and placed it in the "Platform->android->src->com->example->app" Then created the custom AndroidManifest.xml in "Platform->android" The app is launching the SplashActivity as the main one but am ...
java|android|titanium|android-manifest|splash-screen
0
2015-02-22T10:26:41.153Z
2,015
2
10
6
272
1
474
49
5
0
false
false
false
false
false
false
zero
28,656,792
OptionMenu suddenly closes new activity on Android 4.1.1
<p>Good morning, i've an apps with a MainActivity with optionMenu that opens another activity ( A simple About page): All works well on Android 4.2.1 (ASUS TF700T), selecting About open the Page with About Informations. i've this strange behaviour on my Apps with Android 4.1.1 (ICONIA A210): When i select the optionMe...
Good morning, i've an apps with a MainActivity with optionMenu that opens another activity ( A simple About page): All works well on Android 4.2.1 (ASUS TF700T), selecting About open the Page with About Informations. i've this strange behaviour on my Apps with Android 4.1.1 (ICONIA A210): When i select the optionMenu, ...
android|android-activity|optionmenu
0
2015-02-22T10:26:50.450Z
2,015
2
10
6
60
1
612
56
3
3
true
false
false
false
false
false
zero
28,656,865
Send a JSONArray POST request with android volley library
<p>I would like to send and receive a Json Array with volley. Now I can receive an array and it's ok but I don't know how to send a request (For example: with post method).</p> <pre><code>JsonArrayRequest arrayReq = new JsonArrayRequest(URL, new Listener&lt;JSONArray&gt;() { } </code></pre>
I would like to send and receive a Json Array with volley. Now I can receive an array and it's ok but I don't know how to send a request (For example: with post method). [CODE]
java|android|json|http-post|android-volley
3
2015-02-22T10:35:55.157Z
2,015
2
10
6
25,356
4
176
57
5
1
true
false
true
true
false
false
low
28,656,880
table contact has no column named time (code 1)
<p>I have this error: table contact has no column named time (code 1): , while compiling: INSERT INTO contact(time,day,status) VALUES (?,?,?) at android.database.sqlite.SQLiteConnection.nativePrepareStatement(Native Method please help me if you know the solution. </p> <p>my code is : </p> <pre><code>public void onC...
I have this error: table contact has no column named time (code 1): , while compiling: INSERT INTO contact(time,day,status) VALUES (?,?,?) at android.database.sqlite.SQLiteConnection.nativePrepareStatement(Native Method please help me if you know the solution. my code is : [CODE] and I add data in this way: [CODE]
android|sqlite
-1
2015-02-22T10:37:22.583Z
2,015
2
10
6
507
1
315
47
2
2
true
false
false
false
false
true
negative
28,656,913
Android sdk error not found at the specificlocation
<p>I installed the xamarin studio and other components and after installing the sdk for it says that the android sdk not found at specific location. I tried both zip and exe from the following url but in vain. <a href="http://developer.android.com/sdk/index.html" rel="nofollow">http://developer.android.com/sdk/index...
I installed the xamarin studio and other components and after installing the sdk for it says that the android sdk not found at specific location. I tried both zip and exe from the following url but in vain. http://developer.android.com/sdk/index.html thanks adnan shahid..
android|xamarin-studio
0
2015-02-22T10:42:19.550Z
2,015
2
10
6
66
1
272
51
2
0
false
false
false
false
false
false
zero
28,656,953
How to Use Material theme for API level 8
<p>Google play Market App designed using material theme When i put my theme codes on values/styles.xml file it shows error like android:Theme.Material requires Minimum api 21 (current 8)</p> <p>I am also tried putting my material theme code to values-21/styles but no changes occurred Please explain how to use materi...
Google play Market App designed using material theme When i put my theme codes on values/styles.xml file it shows error like android:Theme.Material requires Minimum api 21 (current 8) I am also tried putting my material theme code to values-21/styles but no changes occurred Please explain how to use material theme for ...
android|material-design
-1
2015-02-22T10:47:13.383Z
2,015
2
10
6
1,918
1
366
41
2
0
false
false
false
false
false
true
negative
28,657,007
android studio - how to add spinner to popupwindow in service
<p>i've some kind of problems here !! i've code that shows a popupwindow from my service and inside this popupwindow there is a spinner and when i click the spinner the errors start to show off on me :'( here is the code used : </p> <pre><code> final LayoutInflater inflater = (LayoutInflater) getSystemServi...
i've some kind of problems here !! i've code that shows a popupwindow from my service and inside this popupwindow there is a spinner and when i click the spinner the errors start to show off on me :'( here is the code used : [CODE] any help ??
java|android-studio|android-spinner
0
2015-02-22T10:54:54.983Z
2,015
2
10
6
623
1
243
61
3
1
true
false
false
false
false
false
zero
28,657,025
Android tabHost?
<p>I am trying to create a tab host to but I cant seem to make it work, what am i doing wrong? I have setup up createTab() on my onCreate method but it crashes. </p> <p>I am simply creating a tabhost that holds around 5 tabs. Also I am trying to implement swipe view if anyone knows how to implement it</p> <p>Main act...
I am trying to create a tab host to but I cant seem to make it work, what am i doing wrong? I have setup up createTab() on my onCreate method but it crashes. I am simply creating a tabhost that holds around 5 tabs. Also I am trying to implement swipe view if anyone knows how to implement it Main activity [CODE] } Activ...
android|android-tabhost
0
2015-02-22T10:56:54.260Z
2,015
2
10
6
380
1
339
16
2
2
true
false
false
false
false
false
zero
28,657,088
How to get the drawable from relative layout in android
<p><strong>What i have done:</strong> I have set the bitmap for a relative layout as below </p> <pre><code>RelativeLayout root; root= (RelativeLayout) itemView.findViewById(R.id.root); BitmapFactory.Options options = new BitmapFactory.Options(); options.inSampleSize = 4; Bitmap preview_bitmap = BitmapFactory.decodeRes...
What i have done: I have set the bitmap for a relative layout as below [CODE] What i am trying to do: I am trying to get the bitmap from the relativelayout back again that was set so that i can pass to another activity. Note: i am aware of using the intents to padd data between activities only i want to know how to get...
android|android-fragments|bitmap|android-viewpager|android-drawable
0
2015-02-22T11:05:29.517Z
2,015
2
11
6
5,368
1
366
55
5
1
true
false
true
false
false
false
zero
28,657,120
How to upload a Firefox OS app on Android
<p>I'm developing an app for Firefox OS and I would like to test it on my Android phone. Is it possible? I only found articles about installing apps from the Firefox Marketplace.</p> <p>I could connect my Android device to the WebIDE, but it only makes possible to debug web pages on Firefox for Android, and does not w...
I'm developing an app for Firefox OS and I would like to test it on my Android phone. Is it possible? I only found articles about installing apps from the Firefox Marketplace. I could connect my Android device to the WebIDE, but it only makes possible to debug web pages on Firefox for Android, and does not work for upl...
android|firefox-os
1
2015-02-22T11:09:09.203Z
2,015
2
11
6
88
2
343
41
2
0
false
false
false
false
false
false
low
28,657,181
Strings aren't being converted to integers properly how do I fix it?
<p>Okay so I'm trying to do some steganography, and I'm trying to convert each character from the inputted message to an integer, which I then use to set values of my pixel.</p> <p>To convert from string to an integer I'm using this line of code:-</p> <pre><code>int value = Character.getNumericValue(message.charAt(j)...
Okay so I'm trying to do some steganography, and I'm trying to convert each character from the inputted message to an integer, which I then use to set values of my pixel. To convert from string to an integer I'm using this line of code:- [CODE] However When I would convert, all my integers for my letters were 87 less t...
java|android|steganography
-3
2015-02-22T11:16:12.360Z
2,015
2
11
6
59
1
983
68
3
1
true
false
false
false
false
true
negative
28,657,213
android activity does not scroll down
<p>I m using android studio 1.0.... In design ,my screen is get filled and when it runs it needs to scroll down but its not ... I tried previous answers an add scroll view in layout but there is error ( Scroll view can host only one child) <code>enter code here</code></p> <p></p> <pre><code>&lt;ScrollView android...
I m using android studio 1.0.... In design ,my screen is get filled and when it runs it needs to scroll down but its not ... I tried previous answers an add scroll view in layout but there is error ( Scroll view can host only one child) enter code here [CODE]
android
1
2015-02-22T11:20:31.977Z
2,015
2
11
6
2,767
2
259
37
1
1
true
false
true
false
false
false
low
28,657,218
Menu Item showAsAction="always" has no effect
<p>I use the following definition for an action bar:</p> <pre><code>&lt;style name="YesBar" parent="@style/ThemeOverlay.AppCompat.Dark.ActionBar"&gt; &lt;!-- task bar styles go here --&gt; &lt;/style&gt; </code></pre> <p>And here's my menu items definitions:</p> <pre><code>&lt;menu xmlns:android="http://sche...
I use the following definition for an action bar: [CODE] And here's my menu items definitions: [CODE] My issue is that compat:showAsAction="always" has no effect: the icon is never shown in action bar. How can I fix this? UPD My activity code (I use Scala): [CODE]
android|android-actionbar
0
2015-02-22T11:21:07.063Z
2,015
2
11
6
1,153
2
264
45
2
3
true
false
false
false
false
false
zero
28,657,293
Android app - Skipped frames in pitch recognition
<p>I'm working on a note recognition software, and, I use a Thread.sleep to ensure a pitch is consistent enough over a period to qualify as a note rather than noise. This seems to be making my app skip frames though, and pretty much breaks the program. How can I avoid this?</p> <pre><code>package com.example.miguel.gu...
I'm working on a note recognition software, and, I use a Thread.sleep to ensure a pitch is consistent enough over a period to qualify as a note rather than noise. This seems to be making my app skip frames though, and pretty much breaks the program. How can I avoid this? [CODE]
android|android-4.4-kitkat|tarsosdsp
1
2015-02-22T11:29:35.443Z
2,015
2
11
6
271
0
278
49
3
1
true
true
false
false
false
false
low
28,657,322
alert phone client when update the server database Android
<p>i build a application client/Server the client is my smartphone and the server is website include database I ask if there is a method to alert my phone when i effect an changing in the data base of server </p>
i build a application client/Server the client is my smartphone and the server is website include database I ask if there is a method to alert my phone when i effect an changing in the data base of server
android|client|server
0
2015-02-22T11:32:58.277Z
2,015
2
11
6
133
0
204
58
3
0
false
true
false
false
false
false
zero