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
36,644,547
Making a button to show a toast and sending a data to another activity
<p>I am trying to send data from one activity to another and also to show toast when the button is pressed I am trying to accomplish both at same time.The id of the button I have assigned is <code>add_to_cart</code> and I tried this code below and i didnt work </p> <pre><code>Button customToastButton = (Button) this.f...
I am trying to send data from one activity to another and also to show toast when the button is pressed I am trying to accomplish both at same time.The id of the button I have assigned is add_to_cart and I tried this code below and i didnt work [CODE] The toast part works fine but not the data sending part and I tried ...
android|android-studio|android-activity
1
2016-04-15T10:22:54.670Z
2,016
4
10
4
1,472
3
572
70
3
3
true
false
false
false
false
false
low
36,644,628
Issues in ListView
<p>How to Display The List View Individual Item Names as Individual Layout Header Names? HERE IS MY CODE:In this code only My app name Displays as a title to all layouts.but I want Individual list of item names as a header Names in Individual layout?</p> <pre><code>ListView list; int i; String[] places = {"AP State ...
How to Display The List View Individual Item Names as Individual Layout Header Names? HERE IS MY CODE:In this code only My app name Displays as a title to all layouts.but I want Individual list of item names as a header Names in Individual layout? [CODE]
java|android|listview
0
2016-04-15T10:26:15.810Z
2,016
4
10
4
60
2
254
18
3
1
true
false
false
false
false
false
zero
36,644,732
Problems sharing data between different android applications
<p>I´m currently trying to share information between different applications in Android, the goal I´d like to achieve is having the same behavior the KeyChain data share have in iOS but in Android.</p> <p>I´ve already given a try using SharedPreferences and using "shareUserId" attribute inside Manifest, (by default And...
I´m currently trying to share information between different applications in Android, the goal I´d like to achieve is having the same behavior the KeyChain data share have in iOS but in Android. I´ve already given a try using SharedPreferences and using "shareUserId" attribute inside Manifest, (by default Android applic...
android|mobile|sharedpreferences|accountmanager
1
2016-04-15T10:31:10.283Z
2,016
4
10
4
136
0
1,566
60
4
0
false
true
false
false
false
false
low
36,644,764
How to get Layout width modified in RecyclerView
<p>I'm struggling in using a RecyclerView with a layout that has some listeners.</p> <p>The code is this</p> <ul> <li><p>ViewHolder</p> <pre><code> public static class ViewHolder extends RecyclerView.ViewHolder { public TextView tickerSymbol; public TextView companyName; public View highlightBuy; pu...
I'm struggling in using a RecyclerView with a layout that has some listeners. The code is this ViewHolder [CODE] onCreateViewHolder [CODE] onBindViewHolder [CODE] I'll attach a sample of the bug I have. When I first click a view, the onClick work successfully, but if I scroll and then go back to that view, only the arr...
java|android|android-recyclerview
2
2016-04-15T10:32:36.110Z
2,016
4
10
4
867
2
847
48
3
3
true
false
false
false
false
false
low
36,644,868
change screens in the same layout without using fragments
<p>I'm developing with Android Studio. I created a screen that will have buttons on the side so it looks like a menu bar. i want to make the left (red side) layout changeable - means that if i click on one of the images on the right (green side) the left layout will change to a different layout and will open a differen...
I'm developing with Android Studio. I created a screen that will have buttons on the side so it looks like a menu bar. i want to make the left (red side) layout changeable - means that if i click on one of the images on the right (green side) the left layout will change to a different layout and will open a different a...
android|android-layout
0
2016-04-15T10:37:11.007Z
2,016
4
10
4
76
3
569
57
2
1
true
false
false
false
false
false
zero
36,644,933
How to make interface in adapter class
<p>I am making interface in adapter class but it is giving me error that interface expected here.How can I implement interface in adapter class.I made the adapter and main class but showing me error that interface is expected here. <a href="https://i.stack.imgur.com/qJbOg.png" rel="nofollow noreferrer"><img src="https...
I am making interface in adapter class but it is giving me error that interface expected here.How can I implement interface in adapter class.I made the adapter and main class but showing me error that interface is expected here. [CODE]
java|android
-7
2016-04-15T10:40:14.637Z
2,016
4
10
4
332
1
235
38
2
1
true
false
false
false
false
true
negative
36,644,964
Text field or button appears on outside of design?
<p>with the following code i had trouble adding text view or buttons. Every time i try it appers on the design page that the button is on the outside of the phone. i inserted a picture to show what i mean on design page.</p> <p><a href="http://postimg.org/image/dtqbnoqxv/" rel="nofollow">http://postimg.org/image/dtqbn...
with the following code i had trouble adding text view or buttons. Every time i try it appers on the design page that the button is on the outside of the phone. i inserted a picture to show what i mean on design page. http://postimg.org/image/dtqbnoqxv/ [CODE]
android|xml|android-layout|android-studio
0
2016-04-15T10:42:13.007Z
2,016
4
10
4
249
1
260
50
4
1
true
false
false
false
false
false
zero
36,645,075
Android M API 23 error to load lib .so files
<p>hello guys i have aac decoder in my app </p> <p>it was working great when i was on API level 22 .. </p> <p>but when i was using API level 23 .. my app goes crash and gives me an error unable to lib files </p> <pre><code>java.lang.UnsatisfiedLinkError: dlopen failed: </code></pre> <p>i was search lots of pages bu...
hello guys i have aac decoder in my app it was working great when i was on API level 22 .. but when i was using API level 23 .. my app goes crash and gives me an error unable to lib files [CODE] i was search lots of pages but nothing helping found .. problem was only on latest version of android .. app was working grea...
android|android-studio|shared-libraries|android-6.0-marshmallow|aac
1
2016-04-15T10:46:42.260Z
2,016
4
10
4
830
1
538
44
5
4
true
false
false
false
false
false
low
36,645,252
Fragment gets created after the activity has stopped
<p>I have a problem with the lifecycle in my app. There's some code which commits a fragment to the fragment manager:</p> <pre><code> getSupportFragmentManager() .beginTransaction() .replace(R.id.fragment_container, mModuleFragment) .commit(); </code></pre> <p>There are cert...
I have a problem with the lifecycle in my app. There's some code which commits a fragment to the fragment manager: [CODE] There are certain actions you can do in the app that will run the above code (i.e. commit the fragment), and if followed by using the home button, will lead to a crash. I've looked through the stack...
android|android-fragments|android-lifecycle
1
2016-04-15T10:54:15.003Z
2,016
4
10
4
289
0
1,205
52
3
1
true
true
false
false
false
false
low
36,645,285
sms sent from java app does not appear on android device
<p>I have an application where I m using an sms provider to send sms to my android device. I am sending a message of the following form:</p> <pre><code> message = "value: "+Float.toString(float1)+" and ratio: "+Float.toString(float2) </code></pre> <p>I m using the jva.net library and the code is :</p> <pre><code>...
I have an application where I m using an sms provider to send sms to my android device. I am sending a message of the following form: [CODE] I m using the jva.net library and the code is : [CODE] However, what i receive on my device is just: "value:" I guess it has to do with the encoding. The provider has an option to...
java|android|sms
1
2016-04-15T10:56:07.997Z
2,016
4
10
4
50
1
446
56
3
2
true
false
false
false
false
false
low
36,645,312
populate images with firebase recycler adapter through databinding
<p>I am populating a firebase data with firebase recycler adapter through databinding and want to populate images with the data either from Picasso or Glide, but unable to do. So can any one help me what to write and where to write the code of either Picasso or Glide.</p> <pre><code>public class ShopByCategoryFragment...
I am populating a firebase data with firebase recycler adapter through databinding and want to populate images with the data either from Picasso or Glide, but unable to do. So can any one help me what to write and where to write the code of either Picasso or Glide. [CODE] } [CODE] [CODE] }
firebase-realtime-database|picasso|android-glide|android-databinding|firebaseui
2
2016-04-15T10:57:28.170Z
2,016
4
10
4
1,784
2
290
66
5
3
true
false
false
false
false
false
low
36,645,321
Android indeterminate progress dialog progress bar style
<p>I cannot find the reason why the style of progress bar shown inside indeterminate ProgressDialog differs between Android 22 and 23.</p> <p>Let's take a very simple layout:</p> <pre><code>&lt;?xml version="1.0" encoding="utf-8"?&gt; &lt;RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" ...
I cannot find the reason why the style of progress bar shown inside indeterminate ProgressDialog differs between Android 22 and 23. Let's take a very simple layout: [CODE] Pressing the button displays ProgressDialog: [CODE] The style of the app is: [CODE] And finally the gradle file: [CODE] As you can see on the images...
android|android-theme
2
2016-04-15T10:58:00.110Z
2,016
4
10
4
5,045
1
564
56
2
4
true
false
true
false
false
false
low
36,645,477
Customizing the height of the social network button
<p>I want to add three social network login button Facebook,Twitter and Google plus in my android App.Good thing is I've add these all the buttons with the functionality but the problem I am facing is how to adjust the height of all these button with same height.I can add padding to adjust the height but I think this w...
I want to add three social network login button Facebook,Twitter and Google plus in my android App.Good thing is I've add these all the buttons with the functionality but the problem I am facing is how to adjust the height of all these button with same height.I can add padding to adjust the height but I think this will...
android|facebook-login|google-signin|twitter-login
0
2016-04-15T11:06:36.337Z
2,016
4
11
4
73
1
554
51
4
1
true
false
false
false
false
false
zero
36,645,538
Facing Android layout height issue
<p>I have one edittext and one textview in my linear layout and I gave same height to both, But still getting height difference. </p> <p><a href="https://i.stack.imgur.com/2osO8.png" rel="nofollow noreferrer"><img src="https://i.stack.imgur.com/2osO8.png" alt="enter image description here"></a></p> <p>here my xml. P...
I have one edittext and one textview in my linear layout and I gave same height to both, But still getting height difference. here my xml. Please suggest me what am I doing wrong here ? [CODE] Style Files [CODE]
android|layout
0
2016-04-15T11:09:15.740Z
2,016
4
11
4
346
6
211
34
2
2
true
false
false
false
false
false
zero
36,645,549
Drawable resolution in custom widgets
<p>Good day, I am a little confused and sorry if it is dublicated, but I cant find correct answer. My task is to create widget (RadioButton, RatingBar) with custom drawables + make them high quality and not blur.</p> <p>Here comes my problems and what I have tried. So, for example, I have custom drawable for radio but...
Good day, I am a little confused and sorry if it is dublicated, but I cant find correct answer. My task is to create widget (RadioButton, RatingBar) with custom drawables + make them high quality and not blur. Here comes my problems and what I have tried. So, for example, I have custom drawable for radio buttons: [CODE...
android|drawable
1
2016-04-15T11:09:41.230Z
2,016
4
11
4
116
1
1,347
37
2
2
true
false
false
false
false
false
low
36,645,580
Toolbar Spinner Dropdown inflating issue
<p>I am passing my custom layout in constructor of <code>ArrayAdapter&lt;String&gt;</code>:</p> <pre><code>private static class ActionSpinnerAdapter extends ArrayAdapter&lt;String&gt; { public ActionSpinnerAdapter(final Context context) { super(context, R.layout.action_spinner_text, //This i...
I am passing my custom layout in constructor of ArrayAdapter<String> : [CODE] action_spinner_text.xml [CODE] And these are my getView() and getDropDownView() methods: [CODE] But When I click on DropDown from Toolbar it shows text values with black background on right side. What went wrong?
android|android-layout|android-spinner
0
2016-04-15T11:11:36.620Z
2,016
4
11
4
143
1
290
40
3
3
true
false
false
false
false
false
zero
36,645,803
How to pass data from onSuccess to other class?
<p>I am developing one app and it is based on json. I want to pass data form one class to other class which is received in onSuccess method. when i request for data then data will be receive properly but when i call that data to other class the null pointer error will occur. my method is </p> <pre><code> @Overr...
I am developing one app and it is based on json. I want to pass data form one class to other class which is received in onSuccess method. when i request for data then data will be receive properly but when i call that data to other class the null pointer error will occur. my method is [CODE] and my login method is [COD...
android|android-asynctask|android-async-http
1
2016-04-15T11:21:57.153Z
2,016
4
11
4
1,906
2
619
47
3
2
true
false
false
false
false
false
low
36,645,852
Instert data when you receive a push notification from GCM and your app was not runing
<p>I receive correctly a notification from <em>GCM</em> but I want insert the message in a local (sqlite) database. </p> <p>If I receive the notification when my app is not running, it doesn't insert the message but if my application was running then it does.</p> <pre class="lang-cs prettyprint-override"><code>void S...
I receive correctly a notification from GCM but I want insert the message in a local (sqlite) database. If I receive the notification when my app is not running, it doesn't insert the message but if my application was running then it does. [CODE] Can I access sqlite database when my application is not running ?
sqlite|xamarin|xamarin.android
1
2016-04-15T11:24:08.567Z
2,016
4
11
4
931
2
312
86
3
1
true
false
false
false
false
false
low
36,645,868
For below android version-5 i am getting ZipException with duplicate entry: com/google/api/client/http/AbstractHttpContent.class
<p>Not able to install app in android version 4.4 I am getting error like:</p> <pre><code> Error:Execution failed for task ':app:transformClassesWithJarMergingForDebug'. &gt; com.android.build.api.transform.TransformException: java.util.zip.ZipException: duplicate entry: com/google/api/client/http/AbstractHttpCont...
Not able to install app in android version 4.4 I am getting error like: [CODE] I have tried this solution but it didn't worked for me. Here is my app dependencies [CODE] dependencies for library module [CODE]
android|duplicates|build.gradle|android-4.4-kitkat
1
2016-04-15T11:24:38.750Z
2,016
4
11
4
647
0
208
128
4
3
true
true
false
false
false
false
low
36,645,913
Parse - Load Image into GridView
<p>So I'm trying to load some thumbnails I have on my Parse server, but it's not quite working.</p> <p>The problem I'm having is outside of the for-loop that loads the images into a GridView. The Bitmap isn't being added in the List for some reason.</p> <p>Here's my code: </p> <pre><code>private void getUserThumbs()...
So I'm trying to load some thumbnails I have on my Parse server, but it's not quite working. The problem I'm having is outside of the for-loop that loads the images into a GridView. The Bitmap isn't being added in the List for some reason. Here's my code: [CODE] And here's my adapter: [CODE] EDIT: So I've been trying t...
java|android|parse-platform|android-gridview
0
2016-04-15T11:27:01.343Z
2,016
4
11
4
82
1
642
32
4
2
true
false
false
false
false
false
zero
36,645,996
How to display Hindi or Gujarati Font using Bluetooth Printer?
<p>I am using <a href="https://github.com/pradeepksingh/Android-Bluetooth-Printer" rel="nofollow">Android-Bluetooth-Printer</a>.it works fine if i type English text in <code>edittext</code>,but the issue is if i select hindi language from soft keyboard,and then i enter some hindi text and try to print,but it display no...
I am using Android-Bluetooth-Printer .it works fine if i type English text in edittext ,but the issue is if i select hindi language from soft keyboard,and then i enter some hindi text and try to print,but it display nothing in paper. [CODE] Can any one help me with this?
android|printing|android-bluetooth
0
2016-04-15T11:31:12.360Z
2,016
4
11
4
1,809
1
271
62
3
1
true
false
false
false
false
false
zero
36,646,037
Xamarin.Android mvvmcross app crashes when launching with intent filter
<p>When opening up the android application via a link, the android application crashes, with a <code>NullReferenceExcetpion</code>.</p> <p>The <code>NRE</code> happens in the <code>base.OnCreate(bundle)</code> method. The base is of type <code>MvxFragmentCompatActivity</code>. I have also tried this with a standard ...
When opening up the android application via a link, the android application crashes, with a NullReferenceExcetpion . The NRE happens in the base.OnCreate(bundle) method. The base is of type MvxFragmentCompatActivity . I have also tried this with a standard MvxActivity . I have had a look at the following questions (but...
xamarin.android|mvvmcross|intentfilter
1
2016-04-15T11:32:55.347Z
2,016
4
11
4
801
1
469
71
3
2
true
false
false
false
false
false
low
36,646,067
Android - Receiving Uri of previous image from Camera
<p>In my Application I am taking pictures through camera and showing it in an ImageView. The problem I am facing is that when I take a picture and close the application using finish()(Through back button press), and then reopen my app, then when i take another picture, the image shown is the previous image.</p> <p>Thi...
In my Application I am taking pictures through camera and showing it in an ImageView. The problem I am facing is that when I take a picture and close the application using finish()(Through back button press), and then reopen my app, then when i take another picture, the image shown is the previous image. This is my cod...
android|uri|filepath|android-camera-intent
1
2016-04-15T11:34:38.970Z
2,016
4
11
4
149
0
640
53
4
3
true
true
false
false
false
false
low
36,646,125
Asking the user to activate its GPS when using com.google.android.gms.location.LocationListener
<p>I have studied all the post related to this and read a lot of documentation but still I don't know what to do. When I run the app on my phone the location button is added but nothing happens when I push it, if the GPS is not enabled. When I do enable it (manually, not being promted or anything) it works perfectly.</...
I have studied all the post related to this and read a lot of documentation but still I don't know what to do. When I run the app on my phone the location button is added but nothing happens when I push it, if the GPS is not enabled. When I do enable it (manually, not being promted or anything) it works perfectly. What...
android|google-maps|gps|location
-2
2016-04-15T11:38:04.940Z
2,016
4
11
4
61
1
786
95
4
1
true
false
false
false
false
true
negative
36,646,141
Confirm closing the app on back pressed ONLY in MainAcitity?
<p>I want the user to confirm closing my app. I use the following code for that in my MainActivity:</p> <pre><code>@Override public void onBackPressed() { if (this.lastBackPressTime &lt; System.currentTimeMillis() - 4000) { toast = Toast.makeText(this, "Press back again to close this app", Toast.LENGTH_LON...
I want the user to confirm closing my app. I use the following code for that in my MainActivity: [CODE] In other classes I use this: [CODE] Now I get the confirm event in EVERY class, but I only want it in my MainActivity. How can I do that? Note: I have to extent my MainActivity in other classes. That should be the ma...
java|android|android-studio|android-studio-2.0
-2
2016-04-15T11:39:03.217Z
2,016
4
11
4
112
4
375
60
4
2
true
false
false
false
false
true
negative
36,646,173
How to create background service through AlarmManager with codename one native interface?
<p>First time I try native interface with Codename one for android. I try below code to get the data store on server in the background after a particular time, even when the application is not running. I am not considering if data service / wifi is enabled or not. To get this done, I create a native implementation thro...
First time I try native interface with Codename one for android. I try below code to get the data store on server in the background after a particular time, even when the application is not running. I am not considering if data service / wifi is enabled or not. To get this done, I create a native implementation through...
java|android|codenameone|native-code|android-looper
2
2016-04-15T11:40:22.237Z
2,016
4
11
4
497
1
684
89
5
3
true
false
false
false
false
false
low
36,646,179
OnTouchEvent constantly firing when scrolling in RecyclerView
<p>I have a recyclerview displaying a simple list of items. On long pressing a particular item, a piece of audio associated with this item (stored in the assets folder) is played. On releasing, the audio is paused, and can be returned to at the paused point by long pressing. To that end, I implemented an onTouchListe...
I have a recyclerview displaying a simple list of items. On long pressing a particular item, a piece of audio associated with this item (stored in the assets folder) is played. On releasing, the audio is paused, and can be returned to at the paused point by long pressing. To that end, I implemented an onTouchListener i...
android|android-recyclerview|android-mediaplayer|touch-event
0
2016-04-15T11:40:53.960Z
2,016
4
11
4
898
2
1,281
61
4
1
true
false
false
false
false
false
zero
36,646,214
NullPointerException setting onClickEvent for dynamic button
<p>I have a function which creates a button, which has an <code>onClick</code> event to bring up a custom dialog which just shows some information from the functions parameters. The dialog has two buttons on it as well, one to close the dialog, and one to add information to a file.</p> <p>When I try to set <code>onCli...
I have a function which creates a button, which has an onClick event to bring up a custom dialog which just shows some information from the functions parameters. The dialog has two buttons on it as well, one to close the dialog, and one to add information to a file. When I try to set onClick events for those buttons, t...
java|android|nullpointerexception|dialog
0
2016-04-15T11:42:44.233Z
2,016
4
11
4
54
1
718
60
4
1
true
false
false
false
false
false
zero
36,646,223
Android: Wait for button click
<p>I have to implement a return method of a class. So the structure is as simple as</p> <pre><code>public boolean yesNo(String message){ //return something } </code></pre> <p>The problem here is that there is an EditText object and a Button and I want return a boolean depending on the answer entered by the User i...
I have to implement a return method of a class. So the structure is as simple as [CODE] The problem here is that there is an EditText object and a Button and I want return a boolean depending on the answer entered by the User in the EditText. So naturally I have to wait for the user to write and click the Button when h...
java|android|user-interface|asynchronous|jsch
0
2016-04-15T11:43:08.413Z
2,016
4
11
4
2,126
2
1,185
30
5
2
true
false
false
false
false
false
zero
36,646,413
Strange behaviour with Xamarin Forms Entry
<p>My adventure with Xamarin never ends.</p> <p>I have found a problem using Entry controls into ListView. I have a ListView with ViewCells in my ContentPage. Each ViewCell has a CustomEntry (that I have created).</p> <p>I want control if the user leaves the Entry empty. If he leaves the Entry empty, I would like to ...
My adventure with Xamarin never ends. I have found a problem using Entry controls into ListView. I have a ListView with ViewCells in my ContentPage. Each ViewCell has a CustomEntry (that I have created). I want control if the user leaves the Entry empty. If he leaves the Entry empty, I would like to leave the last valu...
c#|android|xaml|custom-controls|xamarin-forms
3
2016-04-15T11:51:46.687Z
2,016
4
11
4
2,389
0
1,296
42
5
3
true
true
false
false
false
false
low
36,646,416
File Read/Write in android
<p>I am using windows 7,Android SDK version 2.0.This application has 3 editViews to enter data,2 buttons to save and display the data,but the application doesn't shows anything,I have added uses permission for both read and write </p> <pre><code>'package com.example.anshul.writing_to_external; import android.os.En...
I am using windows 7,Android SDK version 2.0.This application has 3 editViews to enter data,2 buttons to save and display the data,but the application doesn't shows anything,I have added uses permission for both read and write [CODE]
android
-1
2016-04-15T11:51:50.693Z
2,016
4
11
4
41
1
233
26
1
1
true
false
false
false
false
true
negative
36,646,420
Search bar to search through TextViews
<p>I have made an application that has several insurance companies in a <code>RelativeLayout</code> within a <code>ScrollView</code>. Each Insurance company is within a <code>LinerarLayout</code>. Is it possible to have a search bar that would search through the TextViews and return only the <code>TextView</code> that ...
I have made an application that has several insurance companies in a RelativeLayout within a ScrollView . Each Insurance company is within a LinerarLayout . Is it possible to have a search bar that would search through the TextViews and return only the TextView that has been searched for. My Code is as fallows [CODE] E...
java|android|android-studio
0
2016-04-15T11:52:04.267Z
2,016
4
11
4
148
2
489
38
3
1
true
false
false
false
false
false
zero
36,646,431
Appium getText() returns android:hint value from EditText?
<p>I just started investigating the use of Appium for test automation of a native Android app. In this app, the XML layout for the UI contains the following declaration for an EditText control:</p> <pre><code>&lt;EditText android:id="@+id/inputText" android:layout_width="fill_parent" android:layout_height...
I just started investigating the use of Appium for test automation of a native Android app. In this app, the XML layout for the UI contains the following declaration for an EditText control: [CODE] When the app runs, the text value of the EditText is obviously empty so it displays the hint value ("Type or paste text he...
android|android-edittext|automated-tests|appium
3
2016-04-15T11:52:44.097Z
2,016
4
11
4
2,272
1
946
58
4
1
true
false
false
false
false
false
low
36,646,517
Coldfusion server stops rendering pages when accessed over Chrome for Android
<p>We have apache 2.4 running on a Windows Server 2012, everything works fine except one strange bug:</p> <p>The server stops serving any pages to users after someone visits any page via Chrome for Android. The visitor on the Android device (only when using Chrome) gets an "connection reset" error, but all users after...
We have apache 2.4 running on a Windows Server 2012, everything works fine except one strange bug: The server stops serving any pages to users after someone visits any page via Chrome for Android. The visitor on the Android device (only when using Chrome) gets an "connection reset" error, but all users after that are g...
android|apache|google-chrome|coldfusion
1
2016-04-15T11:57:21.047Z
2,016
4
11
4
334
1
1,167
77
4
0
false
false
false
false
false
false
low
36,646,571
How to call the value of variables from one class to another in Java (Android)
<p>This is my code. I want to call the value of <code>lat</code>, <code>log</code> variable from <code>JSONTask</code> to <code>onMapReady</code>.</p> <pre><code>public class JSONTask extends AsyncTask&lt;String, String, String&gt; { @Override protected String doInBackground(String... params) { HttpURL...
This is my code. I want to call the value of lat , log variable from JSONTask to onMapReady . [CODE]
java|android|google-maps|oop|geolocation
2
2016-04-15T12:00:27.797Z
2,016
4
12
4
229
4
100
78
5
1
true
false
false
false
false
false
low
36,646,583
Python 'invalid syntax' error on Android
<p>I have a problem with Python on Android. My code works fine with Windows - however, on Android 6.1 with SPMC it gives this error:</p> <pre><code>SyntaxError: ('invalid syntax', ('/storage/emulated/0/Android/data/com.semperpax.spmc16/files/.spmc/addons/context.addtolib/context.py', 104, 45, ' curVisCond ...
I have a problem with Python on Android. My code works fine with Windows - however, on Android 6.1 with SPMC it gives this error: [CODE] And I don't understand why. Part of Code: [CODE]
android|python|syntax-error
1
2016-04-15T12:00:46.930Z
2,016
4
12
4
435
1
185
40
3
2
true
false
false
false
false
false
low
36,646,651
App crashes on Android after upgrading to the latest Titanium SDK
<p>I was trying to upgrade my application to the latest Titanium SDK (5.2.2). It works fine on iOS but having some issues on Android. The app crashes after changing the SDK version.</p> <p>The app uses camera, storage and locations. So, added the permissions for that. Here is a part of my tiapp.xml file for the same:<...
I was trying to upgrade my application to the latest Titanium SDK (5.2.2). It works fine on iOS but having some issues on Android. The app crashes after changing the SDK version. The app uses camera, storage and locations. So, added the permissions for that. Here is a part of my tiapp.xml file for the same: [CODE] This...
android|appcelerator|android-permissions|appcelerator-titanium
2
2016-04-15T12:03:35.860Z
2,016
4
12
4
601
0
6,424
65
4
1
true
true
false
false
false
false
low
36,646,690
What is a Null Pointer Exception at getDatabaseLocked(), how can i fix it?
<p>Following Source is simplify my source code.</p> <pre><code>public class exfragment extends Fragment implements FragmentLifeCycle{ Context mContext; DB db; public exfragment(){ } public exfragment(Context context){ mContext = context; } public void onCreate(Bundle savedInstan...
Following Source is simplify my source code. [CODE] This source code makes a error Because there is no constructor without arguments so, add a constructor without argument. After I executed application including my source, click home button for executing in background. and then I executed some applications until they c...
android|sqlite|nullpointerexception
-1
2016-04-15T12:05:43.940Z
2,016
4
12
4
94
1
594
74
3
3
true
false
false
false
false
true
negative
36,646,739
AndroidJavaException cannot create handler inside thread that has not called looper.prepare in Unity
<p>Here is my code. And I am getting error AndroidJavaException cannot create handler inside thread that has not called looper.prepare in Unity at activity.Call(runOnUiThread)</p> <pre><code>public static void showToast(string text) { if (Application.platform == RuntimePlatform.Android) ...
Here is my code. And I am getting error AndroidJavaException cannot create handler inside thread that has not called looper.prepare in Unity at activity.Call(runOnUiThread) [CODE] if have solution Please help.What I am doing wrong.Thanks in advance
android|plugins|unity3d
0
2016-04-15T12:07:55.950Z
2,016
4
12
4
643
2
248
100
3
1
true
false
false
false
false
false
zero
36,646,935
Android - hide LinearLayout when onFocus on EditText
<pre><code> &lt;RelativeLayout&gt; &lt;LinearLayout android:id="@+id/f1"&gt; &lt;EditText android:id="@+id/f1textA" android:layout_width="match_parent" android:layout_height="wrap_content" and...
[CODE] How to hide f2 LinearLayout when onFocus at f1textA, and set the f1 to full screen. When lostFocus on f1textA, show the f2, and f1 remain to original height. (for hide/show customize keyboard)
android|android-layout
-1
2016-04-15T12:16:53.190Z
2,016
4
12
4
68
1
199
52
2
1
true
false
false
false
false
true
negative
36,647,041
SQLiteAssetHelper cant read or write database
<p>My app is using <code>SQLiteAssetHelper</code> to work with preloaded database.but when i want work with database the app force closes.This is the logcat :</p> <pre><code> 04-15 16:40:48.924 10976-10976/max.mzf.com.max E/SQLiteAssetHelper﹕ Couldn't open myDBName.db for writing (will try read-only): com.ready...
My app is using SQLiteAssetHelper to work with preloaded database.but when i want work with database the app force closes.This is the logcat : [CODE] and this is SQLiteAssetHelper class: [CODE] And this is part of the activity which reads and writes database: [CODE] I'm expecting your valuable guides. BTW,AndroidStudio...
android|sqlite
0
2016-04-15T12:21:20.110Z
2,016
4
12
4
827
1
462
45
2
3
true
false
false
false
false
false
zero
36,647,128
How to implement TLS V1.1 and V1.2 in my android studio application?
<p>I've already bought a SSL certificated in my hosting, but i don't know how to implement in my java code side (using Android Studio).</p> <p>This is my TLSSocketFactory.java (I copied this class from another page and I put it in my java code)</p> <pre><code>import java.io.IOException; import java.net.InetAddress; i...
I've already bought a SSL certificated in my hosting, but i don't know how to implement in my java code side (using Android Studio). This is my TLSSocketFactory.java (I copied this class from another page and I put it in my java code) [CODE] And this is my methods to use get and post: GET method: [CODE] POST method: [C...
java|web-services|ssl|android-studio|tls1.2
0
2016-04-15T12:25:14.427Z
2,016
4
12
4
1,802
2
573
68
5
3
true
false
false
false
false
false
zero
36,647,158
Android change text color in a Spinner
<p>I have a Spinner and use an ArrayAdapter. In the adapter I use "android.R.layout.simple_list_item_1", like this:</p> <pre><code>spinnerControlObjectType.setAdapter(new ArrayAdapter(getApplicationContext, android.R.layout.simple_list_item_1, list)) </code></pre> <p>I looked in android.R.layout.simple_list_item_1 an...
I have a Spinner and use an ArrayAdapter. In the adapter I use "android.R.layout.simple_list_item_1", like this: [CODE] I looked in android.R.layout.simple_list_item_1 and see the it has a text styling like this: android:textAppearance="?android:attr/textAppearanceListItemSmall" I want to overwrite "textAppearanceListI...
android|colors|styles|themes|spinner
3
2016-04-15T12:27:24.090Z
2,016
4
12
4
13,558
5
918
38
5
1
true
false
true
true
false
false
low
36,647,194
Bug recording videos android
<p>I'm trying to reocord many videos of 30 seconds in background but, after 20 or 30 videos my service wich is stoping and launching the process to record go slowly.</p> <p>I have try with a service in the same process and the problem was the same.</p> <p>My video handler: </p> <pre><code>@Override public void onCre...
I'm trying to reocord many videos of 30 seconds in background but, after 20 or 30 videos my service wich is stoping and launching the process to record go slowly. I have try with a service in the same process and the problem was the same. My video handler: [CODE] And this is the process to record: [CODE] When I try to ...
android|video|service|background|camera
4
2016-04-15T12:29:07.720Z
2,016
4
12
4
147
2
449
28
5
2
true
false
false
false
false
false
low
36,647,241
API Google maps Android - marker display shaking because of viewpager
<p>I encounter a problem with my maps.</p> <p>In fact, the markers shake (change position at multiple time) when I enable user location and use LocationListener callback.</p> <p><s>If I quote my updateUserLocation, it works normally.</p> <p>I never reload the marker list so I don't understand why marker display is b...
I encounter a problem with my maps. In fact, the markers shake (change position at multiple time) when I enable user location and use LocationListener callback. If I quote my updateUserLocation, it works normally. I never reload the marker list so I don't understand why marker display is broken. Ok, so it's seems my vi...
android|android-viewpager|google-maps-android-api-2|marker
0
2016-04-15T12:31:31.377Z
2,016
4
12
4
637
0
994
69
4
4
true
true
false
false
false
false
zero
36,647,303
EWS-Java-API - EmailMessage.send into java.lang.NullPointerException: format == null
<p>I want to use the EWS-Java-API for my android application. The application requires a login to get programmatically access to the microsoft exchange server (e.g. calendar meetings, email, meeting rooms, and much more). </p> <p>At this point almost the entire question is edited, just in case to show the situation so...
I want to use the EWS-Java-API for my android application. The application requires a login to get programmatically access to the microsoft exchange server (e.g. calendar meetings, email, meeting rooms, and much more). At this point almost the entire question is edited, just in case to show the situation so far. I try ...
java|android-studio|ms-office|exchangewebservices|ewsjavaapi
0
2016-04-15T12:34:18.687Z
2,016
4
12
4
1,723
2
820
84
5
6
true
false
false
false
false
false
zero
36,647,414
Show Small Icon in notification Bar but hide in notification Panel
<p>I try to find this one in this forum and I found a couple but no one worked for me. I just need to hide it in the notification panel where appears next to the large icon but if I hide it, it also dissapears from the notification bar. </p> <p><a href="https://i.stack.imgur.com/gGhIJ.jpg" rel="nofollow noreferrer"><i...
I try to find this one in this forum and I found a couple but no one worked for me. I just need to hide it in the notification panel where appears next to the large icon but if I hide it, it also dissapears from the notification bar. Is there any way to show only the large icon as is happening in the first and fourth n...
android|notifications|android-notifications
4
2016-04-15T12:39:42.170Z
2,016
4
12
4
4,201
2
374
66
3
1
true
false
true
false
false
false
low
36,647,444
How to read Animation scale duration flag in Marshmallow
<p>I am facing problem while reading <code>Animation scale duration</code> flag in Marshmallow. Same code is working in earlier version of Marshmallow (6.0.0).</p> <p>I am using <code>android.app.Fragment.setCustomTransition()</code> method for fragment animation. When Animation scale duration is 0 in <code>developer ...
I am facing problem while reading Animation scale duration flag in Marshmallow. Same code is working in earlier version of Marshmallow (6.0.0). I am using android.app.Fragment.setCustomTransition() method for fragment animation. When Animation scale duration is 0 in developer option settings , fragments do not get disp...
android|android-animation|fragment-transitions
0
2016-04-15T12:41:12.050Z
2,016
4
12
4
313
1
702
56
3
3
true
false
false
false
false
false
zero
36,647,466
Misunderstanding Google Play says Your device isn't compatible with this version
<p><strong>This question have a lot of responses already but none of it helps me</strong></p> <p>I created an Android app and it says that I can't install it on tablet. If I run project from Android Studio on tablet it works perfectly.Also it doesn't find the app by name only on the tablet. </p> <p>On desktop when op...
This question have a lot of responses already but none of it helps me I created an Android app and it says that I can't install it on tablet. If I run project from Android Studio on tablet it works perfectly.Also it doesn't find the app by name only on the tablet. On desktop when open my app's page: On tablet when open...
android|google-play|google-play-services
0
2016-04-15T12:42:32.023Z
2,016
4
12
4
1,249
3
445
80
3
2
true
false
false
false
false
false
zero
36,647,684
do I need AppCompatActivity & v7 Support Libraries with minimum sdk 21?
<p>I am new to Android and a little bit confused right now.</p> <p>After setting up a new project with min sdk 21 (Android 5.0) in android studio, by default my <code>main_activity</code> extends <code>AppCompatActivity</code> which at first was no problem. I tried to set up the Material. Dark theme like shown <a hre...
I am new to Android and a little bit confused right now. After setting up a new project with min sdk 21 (Android 5.0) in android studio, by default my main_activity extends AppCompatActivity which at first was no problem. I tried to set up the Material. Dark theme like shown here but @android:style/Theme.Material does ...
android|android-5.0-lollipop|android-appcompat
12
2016-04-15T12:52:12.457Z
2,016
4
12
4
1,624
3
1,009
71
3
0
false
false
false
false
true
false
medium
36,647,691
Saving and restoring an activity's state - Bundle always null?
<p>I know this question is asked everywhere, and I have tried looking at answers such as this one: <a href="https://stackoverflow.com/questions/10813142/onsaveinstancestate-not-working">onSaveInstanceState not working</a> as it is similar to mine however I can't find a solution.</p> <p>This is my code:</p> <pre><code...
I know this question is asked everywhere, and I have tried looking at answers such as this one: onSaveInstanceState not working as it is similar to mine however I can't find a solution. This is my code: [CODE] As you can see I have a lot of print statements to try and work out what's going wrong and why. No matter how ...
android|android-activity|bundle|oncreate
0
2016-04-15T12:52:38.217Z
2,016
4
12
4
63
1
582
62
4
1
true
false
false
false
false
false
zero
36,648,045
Android SQLite Query Syntax causing sqlite.SQLiteException
<p>So i have a section in my database where i need to do a join the tables look like this...</p> <pre><code> ______________ _______________ |Vehicle | |Car | |--------------| |---------------| |_id PK | |_id PK | |Warehouse | |VehicleId FK...
So i have a section in my database where i need to do a join the tables look like this... [CODE] The Car VehicleID Foreign key is from the Vehicle Primary key. What I want to return is a cursor for each vehicle. Warehouse Location Make Model I'm not sure how I would construct the SQLite statement, can anyone give me a ...
java|android|android-studio|sqlite
-5
2016-04-15T13:07:29.250Z
2,016
4
13
4
91
3
694
58
4
3
true
false
false
false
false
true
negative
36,648,268
Android WebView download not working
<p>I have created one web view having page containing html form and on submitting form (with post method) it should download the file.</p> <p>I have implemented <code>webview download listener</code> so i can handle downloads.</p> <pre><code>@Override public void onDownloadStart(String url, String userAgent, String c...
I have created one web view having page containing html form and on submitting form (with post method) it should download the file. I have implemented webview download listener so i can handle downloads. [CODE] Now problem is, If i use post method in HTML FORM in page, download not working(it is working if i use GET me...
android|webview
5
2016-04-15T13:16:53.370Z
2,016
4
13
4
2,235
1
418
36
2
1
true
false
false
false
false
false
low
36,648,347
Put Parcelable via intent
<p>I am trying to pass Parcelable object from the <strong>A</strong> activity to <strong>B</strong> activity via intent: </p> <pre><code>Intent intent = new Intent (A.this, B.class); intent.putExtra ("post", mypost); // where post implements Parcelable` </code></pre> <p>In <strong>B</strong> Activity I got the post ...
I am trying to pass Parcelable object from the A activity to B activity via intent: [CODE] In B Activity I got the post object in this way: [CODE] In B activity myPost object fields are mixed, e.g. I have postText and postDate fields in Post model, the values of this fields in B activity are mixed. Why this can happen?...
java|android|android-intent|parcelable
1
2016-04-15T13:20:28.813Z
2,016
4
13
4
590
1
426
25
4
3
true
false
false
false
false
false
low
36,648,430
Catch Installation failure when doing it programmatically
<p>I have a rooted android device where I download and install the update programmatically. While installing there is no pop up for user, asking for permission to install or showing any error which could have happened during installation. Everything happens in the background. Below is my <code>SoftwareInstallActivity</...
I have a rooted android device where I download and install the update programmatically. While installing there is no pop up for user, asking for permission to install or showing any error which could have happened during installation. Everything happens in the background. Below is my SoftwareInstallActivity which perf...
android|android-intent
2
2016-04-15T13:24:27.640Z
2,016
4
13
4
121
1
733
57
2
2
true
false
false
false
false
false
low
36,648,489
Volley StringRequest with UTF-8 characters - Android
<p>I'm sending request to server to update row in db. In URL I'm using Cyrillic characters, something like this:</p> <pre><code>localhost/API/BSSR/UpdateZabeleshka?NalogID=2774&amp;Zabeleska=Nescaffe%20Без%20Мраз%20|%20 </code></pre> <p>So when I send this request it update the row in db, but instead of characters it...
I'm sending request to server to update row in db. In URL I'm using Cyrillic characters, something like this: [CODE] So when I send this request it update the row in db, but instead of characters it write all ?????? Here is my code: [CODE] Json.updateZabeleska(nalogID, zabeleska) returns the comlete URL
android|request|android-volley
0
2016-04-15T13:27:26.100Z
2,016
4
13
4
510
1
304
52
3
2
true
false
false
false
false
false
zero
36,648,568
how to change textview's text in info window, from list of Strings
<p>When my MapActivity opens, I request some info from my Firebase database that contains these data for certain hotel and after that it creates markers with loaded data.. I tried with snippet, but if my review is too long, it can not be shown.. </p> <pre><code> @Override public void onLoaded(String name, doubl...
When my MapActivity opens, I request some info from my Firebase database that contains these data for certain hotel and after that it creates markers with loaded data.. I tried with snippet, but if my review is too long, it can not be shown.. [CODE] so, I implemented InfoAdapter listener with it's method: [CODE] and no...
android|google-maps|google-maps-markers|android-maps-v2|infowindow
0
2016-04-15T13:30:37.160Z
2,016
4
13
4
919
1
603
66
5
2
true
false
false
false
false
false
zero
36,648,593
Android : Type mismatch: cannot convert from EditText to boolean
<p>here is my code<br> i try his solution but it didnt work</p> <pre><code> package com.FF_studio.psp_rd_lite_1; import android.app.Activity; import android.os.Bundle; import android.view.Menu; import android.view.MenuItem; import android.view.View; import android.widget.EditText; import...
here is my code i try his solution but it didnt work [CODE]
android
-1
2016-04-15T13:31:30.620Z
2,016
4
13
4
355
1
59
64
1
1
true
false
false
false
false
true
negative
36,648,597
android merge several images
<p>I'm trying to merge up to around 200 images. I'm using the following code but on attempting to merge the 3rd image, the first 2 go away and all that I'm shown is only the 3rd image. In reality, when I'm merging the 50th image, I'm really only dealing w/ 2 images: the one that has 49 images merged and the new image t...
I'm trying to merge up to around 200 images. I'm using the following code but on attempting to merge the 3rd image, the first 2 go away and all that I'm shown is only the 3rd image. In reality, when I'm merging the 50th image, I'm really only dealing w/ 2 images: the one that has 49 images merged and the new image to m...
android|java-2d
0
2016-04-15T13:31:50.087Z
2,016
4
13
4
53
0
379
28
2
1
true
true
false
false
false
false
zero
36,648,803
Android - Memory usage keep going up on switching Fragment
<p>I have an <code>Activity</code> which holds a LOT of <code>Fragments</code>.. Many of those <code>Fragments</code> has <code>RecyclerView</code> and those which have <code>RecyclerView</code> holds an <code>ArrayList</code> inside their own <code>RecyclerViewAdapter</code>.</p> <p>First suspicion, all my <code>Recy...
I have an Activity which holds a LOT of Fragments .. Many of those Fragments has RecyclerView and those which have RecyclerView holds an ArrayList inside their own RecyclerViewAdapter . First suspicion, all my RecyclerViewAdapter constructor looks like : AdapterName(Context context) and the Adapter has its own context ...
android|android-fragments
0
2016-04-15T13:40:02.240Z
2,016
4
13
4
59
0
1,249
58
2
0
false
true
false
false
false
false
zero
36,648,809
Android "permission Denial", when receiving shared file
<p>So i am writing an app, that can receive files via the share menu from other apps. I have a <code>ShareActivity</code>, which has the intent filter for receiving files.</p> <p>Once file is received <code>ShareActivity</code> is started and in that activity user must choose a folder in which the received file will b...
So i am writing an app, that can receive files via the share menu from other apps. I have a ShareActivity , which has the intent filter for receiving files. Once file is received ShareActivity is started and in that activity user must choose a folder in which the received file will be uploaded. When the user has chosen...
android|file|xamarin|permissions
1
2016-04-15T13:40:22.307Z
2,016
4
13
4
877
1
1,717
55
4
2
true
false
false
false
false
false
low
36,648,816
Android OpenGL ES read texture pixels
<p>The preview from my camera is rendered to a texture. I have the textureId and am trying to render the texture on a <code>FBO</code> so I can <code>glReadPixels</code>.</p> <p>When I do actually read the pixels, all of them appear to be black though.</p> <p>This is the code I am using at the moment:</p> <pre><code...
The preview from my camera is rendered to a texture. I have the textureId and am trying to render the texture on a FBO so I can glReadPixels . When I do actually read the pixels, all of them appear to be black though. This is the code I am using at the moment: [CODE] If I display the texture on the screen, I am able to...
java|android|opengl-es
1
2016-04-15T13:40:30.507Z
2,016
4
13
4
1,258
1
733
37
3
1
true
false
false
false
false
false
low
36,648,862
ListView not Appearing
<p>I am trying to make an activity that provides a list of emergency phone numbers with the ability for the user to add their own custom entries and save them. For some reason, the ListView doesn't appear on the activity. I'm pretty sure I'm doing something wrong in the CustomAdapter class that I made to hold two text ...
I am trying to make an activity that provides a list of emergency phone numbers with the ability for the user to add their own custom entries and save them. For some reason, the ListView doesn't appear on the activity. I'm pretty sure I'm doing something wrong in the CustomAdapter class that I made to hold two text box...
java|android|xml|listview
0
2016-04-15T13:42:25.457Z
2,016
4
13
4
57
3
637
22
4
3
true
false
false
false
false
false
zero
36,648,913
Null Exception on Custom list adapter while using Fragment and Volley
<p>Hi everyone I need a little help with his Exception I am taking while calling the Fragment. I have created a custom list adapter and I am assigning it to the listview of my fragment. I think my network call using Volley might be a problem. Where should we make Network Calls inside a fragments? I have tried in on O...
Hi everyone I need a little help with his Exception I am taking while calling the Fragment. I have created a custom list adapter and I am assigning it to the listview of my fragment. I think my network call using Volley might be a problem. Where should we make Network Calls inside a fragments? I have tried in on OnResu...
java|android|android-fragments|android-volley
0
2016-04-15T13:45:06.360Z
2,016
4
13
4
285
1
663
69
4
4
true
false
false
false
false
false
zero
36,648,926
Java Binding Abstract class not being generated
<blockquote> <p>Error CS0234: The type or namespace name <code>IBitmap' does not exist in the namespace</code>Com.Sushi.Hangover'. Are you missing an assembly reference? </p> </blockquote> <p>I have an Android binding project which has classes that are inheriting from multiple interfaces but these interfaces are not...
Error CS0234: The type or namespace name IBitmap' does not exist in the namespace Com.Sushi.Hangover'. Are you missing an assembly reference? I have an Android binding project which has classes that are inheriting from multiple interfaces but these interfaces are not been generated and thus all of the public classes th...
binding|xamarin|xamarin.android
3
2016-04-15T13:45:30.107Z
2,016
4
13
4
2,985
2
977
47
3
3
true
false
true
false
false
false
low
36,649,026
How to add an byte value (8-bit) to string and read it back in byte in Java
<p>I'm trying to develop an Android app, where I need to add an byte value (8-bit) inside a string and read it back again in byte[].</p> <p>However I'm getting some different value when I convert the string to byte[] again using <em>getBytes()</em>. I think its some encoding or charset issue.</p> <p>BTW I'm new to ja...
I'm trying to develop an Android app, where I need to add an byte value (8-bit) inside a string and read it back again in byte[]. However I'm getting some different value when I convert the string to byte[] again using getBytes() . I think its some encoding or charset issue. BTW I'm new to java programming I mostly cod...
java|android
0
2016-04-15T13:50:34.433Z
2,016
4
13
4
1,759
2
529
75
2
5
true
false
false
false
false
false
zero
36,649,119
My application can't store the image taken with OpenCV Library
<p>I am developping an android application for face recognition ,and when i press the button to store the picture , My app stopped !! Here is my code the the Activity Add Picture : </p> <pre><code> public class Add_Picture extends FragmentActivity implements CvCameraViewListener2 { static { if (!OpenCVLoader...
I am developping an android application for face recognition ,and when i press the button to store the picture , My app stopped !! Here is my code the the Activity Add Picture : [CODE] My Logcat shows me that : Canno't load info library for OpenCV. And here is my class for the image's traitement : [CODE]
android|opencv|android-camera
1
2016-04-15T13:54:41.137Z
2,016
4
13
4
91
0
305
62
3
2
true
true
false
false
false
false
low
36,649,121
java.lang.NoClassDefFoundError: okhttp3.OkHttpClient$Builder
<p>In my project, I have used OkHttp(version 2.5.0) as my network request library. But few days ago, I tried Retrofit2 as part of my app's network request library, as you know, the new Retrofit2 library dependence on OkHttp(version 3.2.0).So here comes the problem that when my app runs on android phone whose android ve...
In my project, I have used OkHttp(version 2.5.0) as my network request library. But few days ago, I tried Retrofit2 as part of my app's network request library, as you know, the new Retrofit2 library dependence on OkHttp(version 3.2.0).So here comes the problem that when my app runs on android phone whose android versi...
java|android|retrofit2|okhttp
8
2016-04-15T13:54:42.683Z
2,016
4
13
4
18,389
1
744
60
4
3
true
false
true
true
false
false
medium
36,649,135
Android Emulator HttpUrlConnection
<p>I am writing an android app that should connect to a Web Service I wrote, but every time I try to test it on the emulator It won't work with when the app enters in the HttpUrlConnection.connect() line: see my code. There is no error shown in the logcat, but when I open the URL in the emulators browser it works. I ev...
I am writing an android app that should connect to a Web Service I wrote, but every time I try to test it on the emulator It won't work with when the app enters in the HttpUrlConnection.connect() line: see my code. There is no error shown in the logcat, but when I open the URL in the emulators browser it works. I even ...
java|android|android-emulator
0
2016-04-15T13:55:15.027Z
2,016
4
13
4
277
0
607
34
3
1
true
true
false
false
false
false
zero
36,649,137
Semi circular menu with elements facing towards center
<p>I need a semi circular menu for my app . I have been using this library to achieve the same :-</p> <p><a href="https://github.com/xresco/CircularLayout" rel="nofollow noreferrer">https://github.com/xresco/CircularLayout</a></p> <p>I am able to achieve something like this:-</p> <p><a href="https://i.stack.imgur.co...
I need a semi circular menu for my app . I have been using this library to achieve the same :- https://github.com/xresco/CircularLayout I am able to achieve something like this:- As you can see the Library works well for circular layout , however for rectangular layouts , not so good. The code which handles the rotatio...
android|horizontal-scrolling
2
2016-04-15T13:55:20.880Z
2,016
4
13
4
946
0
543
54
2
1
true
true
false
false
false
false
low
36,649,202
How does 360 Security keep their notification up after reboot
<p>The 360 Security application shows notification with some settings through a permanent notificaiton. I would like to achieve the same thing, but after rebooting the notification dissapears and it takes quite some time to get it show up. The 360 Security on the other hand is up instantly after rebooting the device.</...
The 360 Security application shows notification with some settings through a permanent notificaiton. I would like to achieve the same thing, but after rebooting the notification dissapears and it takes quite some time to get it show up. The 360 Security on the other hand is up instantly after rebooting the device. I've...
android|android-intent|notifications|reboot
2
2016-04-15T13:57:36.040Z
2,016
4
13
4
191
0
1,130
61
4
0
false
true
false
false
false
false
low
36,649,523
Android MediaProjection performance improvements
<p>I Would like to ask, if it's possible to improve performance for <code>MediaProjection</code>.</p> <p>Edited after fadden answer.</p> <p>Pseudo structure of app: </p> <p>1) Fullscreen FrameLayout in AppCompatActivity:</p> <pre><code>&lt;?xml version="1.0" encoding="utf-8"?&gt; &lt;FrameLayout android:i...
I Would like to ask, if it's possible to improve performance for MediaProjection . Edited after fadden answer. Pseudo structure of app: 1) Fullscreen FrameLayout in AppCompatActivity: [CODE] 2) Camera Preview with SurfaceView [CODE] 3) Add Camera Preview to FrameLayout [CODE] 4) Create input surface: [CODE] 5) Create v...
android|video|android-mediacodec|mediamuxer|android-mediaprojection
0
2016-04-15T14:11:42.620Z
2,016
4
14
4
1,116
0
1,110
48
5
6
true
true
false
false
false
false
zero
36,649,604
Cannot Convert Listview to Bitmap
<p>I am trying to convert layout to bitmap. The layout contains Textview and Listview. Textview is displaying in Bitmap but Listview is displaying but not displaying(showing empty) in drawing cache. Here is my code</p> <p>Print.xml</p> <pre><code> &lt;LinearLayout android:id="@+id/screen_print1" ...
I am trying to convert layout to bitmap. The layout contains Textview and Listview. Textview is displaying in Bitmap but Listview is displaying but not displaying(showing empty) in drawing cache. Here is my code Print.xml [CODE] Print.java [CODE]
android|bitmap|android-bitmap|bitmapimage
1
2016-04-15T14:15:50.047Z
2,016
4
14
4
415
1
246
33
4
2
true
false
false
false
false
false
low
36,649,607
Android - How to check if a button background color is the same as the previous one in the view (programmatically)
<p>In my app, i add buttons programmatically to my view. I maked a LinkedList of String to put this : numers are colors</p> <pre><code> ArrayList lesCouleurs; </code></pre> <p>I add the colors :</p> <pre><code>lesCouleurs = new ArrayList&lt;&gt;(); lesCouleurs.add(0, Color.RED); lesCouleurs.add(1, Color....
In my app, i add buttons programmatically to my view. I maked a LinkedList of String to put this : numers are colors [CODE] I add the colors : [CODE] Here is my method to add buttons programmatically :(Commentaries are in French) [CODE] And when i load back te preferences, i want them to get the same color as chosen in...
android|list|button|colors
2
2016-04-15T14:16:03.890Z
2,016
4
14
4
759
1
477
114
4
3
true
false
false
false
false
false
low
36,649,620
How can i get a button to add an item to an arraylist then to a listview in another fragment activity
<p>I have a fixed tab layout with 3 tabs. I am trying to have a button in tab1 to add items into a listview in tab2 using <code>ArrayList</code>, both of them extends <code>Fragment</code>. The below code works only when the the activity extends Activity. Can anyone help me out with an answer to the fix of the problem....
I have a fixed tab layout with 3 tabs. I am trying to have a button in tab1 to add items into a listview in tab2 using ArrayList , both of them extends Fragment . The below code works only when the the activity extends Activity. Can anyone help me out with an answer to the fix of the problem. I did some testing with an...
java|android|listview|android-fragments|arraylist
0
2016-04-15T14:16:43.010Z
2,016
4
14
4
560
2
735
101
5
3
true
false
false
false
false
false
zero
36,649,636
Android GLSL Loop Length
<p>I've been looking into an issue I had with a shader I'm using for an offline process, it's doing a large loop in GLSL using OpenGL ES 2.0, I accidentally deployed and used it on my Samsung Galaxy S6 and noticed something odd, I'm more curious than anything but I managed to boil it down to a very simple shader (note ...
I've been looking into an issue I had with a shader I'm using for an offline process, it's doing a large loop in GLSL using OpenGL ES 2.0, I accidentally deployed and used it on my Samsung Galaxy S6 and noticed something odd, I'm more curious than anything but I managed to boil it down to a very simple shader (note the...
android|opengl-es|glsl|glsles
1
2016-04-15T14:17:13.103Z
2,016
4
14
4
136
0
1,166
24
4
2
true
true
false
false
false
false
low
36,649,678
My ImageView doesn´t appear on my Device screen
<p>I created a Layout and a Activity to that Layout.</p> <p>In the Layout I only have an ImageView with a png image that is located in the Resources/Drawables.</p> <p>When I launch the Application in my Device the ImageView doesn´t appear on the screen.</p> <p>This is my XML:</p> <pre><code>&lt;?xml version="1.0" e...
I created a Layout and a Activity to that Layout. In the Layout I only have an ImageView with a png image that is located in the Resources/Drawables. When I launch the Application in my Device the ImageView doesn´t appear on the screen. This is my XML: [CODE] This is the Activity Code: [CODE] If you want me to put some...
android|xamarin
1
2016-04-15T14:19:18.787Z
2,016
4
14
4
70
1
358
47
2
2
true
false
false
false
false
false
low
36,649,694
xmpp: ConnectionClosedOn Error! Parser got END_DOCUMENT event
<p>I'm trying too login to the android app that i have created whose authentication will be done using the username and password registered in ejabberd. The connection is successfully established but i'm not abe to login. It gives an error namely - "ConnectionClosedOn Error! Parser got END_DOCUMENT event. This could h...
I'm trying too login to the android app that i have created whose authentication will be done using the username and password registered in ejabberd. The connection is successfully established but i'm not abe to login. It gives an error namely - "ConnectionClosedOn Error! Parser got END_DOCUMENT event. This could happe...
android|ejabberd
7
2016-04-15T14:19:52.303Z
2,016
4
14
4
1,983
1
2,140
61
2
2
true
false
false
false
false
false
medium
36,649,712
ANDROID Integrate my app with Waze
<p>I want to integrate Waze into my android application. I follow the steps from the link below.</p> <p><a href="https://www.waze.com/about/dev#android_api" rel="nofollow noreferrer">https://www.waze.com/about/dev#android_api</a></p> <p>I search through the questions and found this same one but it is for ios</p> <p>...
I want to integrate Waze into my android application. I follow the steps from the link below. https://www.waze.com/about/dev#android_api I search through the questions and found this same one but it is for ios xcode and waze integration Below is the code which i use. [CODE] Why I got the following error when I run it? ...
java|android|waze
1
2016-04-15T14:20:25.530Z
2,016
4
14
4
2,173
1
326
34
3
2
true
false
false
false
false
false
low
36,649,811
Error in implementation of interface between activity and view
<p>I'm trying to get in my <code>MyActivity</code> an <code>int</code> from a View <code>MyView</code>. In my activity I have the following:</p> <pre><code>public class MyActivity extends AppCompatActivity implements MyView.GetCallBack { final MyActivity context = this; private AsyncTask&lt;Void, Void, Void&g...
I'm trying to get in my MyActivity an int from a View MyView . In my activity I have the following: [CODE] Now MyView contains the following code: [CODE] I can compile the code without problems, but in the LogCat I get the following mistake: FATAL EXCEPTION: main Process: com.example.ex, PID: 8035 java.lang.ClassCastEx...
java|android|android-activity|view|interface
0
2016-04-15T14:24:48.067Z
2,016
4
14
4
25
1
583
62
5
2
true
false
false
false
false
false
zero
36,650,070
Retrofit - ensuring observable calls always complete without a subscription
<p>I have an app that consumes a restful API and I am using Retrofit with RxJava to achieve this. The UI uses the MVVM pattern, leveraging the Android Data Binding library. The view models are what make requests to the API by using a class called <code>DataManager</code> which delegates calls to the appropriate service...
I have an app that consumes a restful API and I am using Retrofit with RxJava to achieve this. The UI uses the MVVM pattern, leveraging the Android Data Binding library. The view models are what make requests to the API by using a class called DataManager which delegates calls to the appropriate service to return an Ob...
android|retrofit|rx-java
0
2016-04-15T14:35:58.243Z
2,016
4
14
4
473
0
2,343
75
3
1
true
true
false
false
false
false
zero
36,650,074
NavigationView without gray border when using fitsSystemWindows
<p>I created a new App with Android Studio 2.0 and I want to have my Navigation Drawer below the <code>Toolbar</code>. I know the Material Design specs say it should be above the <code>Toolbar</code> but my Drawer won't have that much entries and I want to see the neat icon animation provided by Google.</p> <p>I maged...
I created a new App with Android Studio 2.0 and I want to have my Navigation Drawer below the Toolbar . I know the Material Design specs say it should be above the Toolbar but my Drawer won't have that much entries and I want to see the neat icon animation provided by Google. I maged to get what I want by placing the D...
android|material-design|navigation-drawer
1
2016-04-15T14:36:04.780Z
2,016
4
14
4
1,573
1
862
63
3
1
true
false
false
false
false
false
low
36,650,125
show Random display of dice image from drawable folder in Android while adding it's value
<p>To make my question clear, I have these dice images range from 1 to 4 which is imported on the <code>drawable folder</code>. What am trying to do is during the app's run on the emulator, the dices would show its original look:</p> <p>ex.</p> <p>figure 1: [<strong>.</strong>] -image of dice one [<strong>..</...
To make my question clear, I have these dice images range from 1 to 4 which is imported on the drawable folder . What am trying to do is during the app's run on the emulator, the dices would show its original look: ex. figure 1: [ . ] -image of dice one [ .. ] - image of dice two underneath these two is a button named ...
android|eclipse|image|random
-1
2016-04-15T14:38:29.587Z
2,016
4
14
4
158
1
1,651
89
4
0
false
false
false
false
false
true
negative
36,650,141
My google map Android App does Not Run on Samsung Mobiles however its running on Other mobiles Brands
<p>This my code <code>MapsActivity.java</code> file please see my code is not running in samsung mobile but run in all mobiles . I am confused what should i do with code. </p> <pre><code>public class MapsActivity extends FragmentActivity { private GoogleMap mMap; private GoogleApiClient client; @Overrid...
This my code MapsActivity.java file please see my code is not running in samsung mobile but run in all mobiles . I am confused what should i do with code. [CODE] My google map Android App does Not Run on Samsung Mobiles however its running on Other mobiles Brands. What is the problem? This is the logcat error: [CODE]
java|android|eclipse|google-maps|import
0
2016-04-15T14:39:12.037Z
2,016
4
14
4
57
0
318
101
5
2
true
true
false
false
false
false
zero
36,650,284
Android EditText - E/Minikin: no font for run starting <code> length 2
<p>My app reads a text file that can contain special characters. Then I set the text to an <code>EditText</code>, but for some files (with lots of special characters) it is very slow "setting" the text: </p> <p>This is what it show in the logcat when it it busy "setting the text":</p> <pre><code>04-15 16:39:00.245 24...
My app reads a text file that can contain special characters. Then I set the text to an EditText , but for some files (with lots of special characters) it is very slow "setting" the text: This is what it show in the logcat when it it busy "setting the text": [CODE] I think it is trying to get the correct characters, bu...
android|fonts|android-edittext|character|special-characters
1
2016-04-15T14:45:15.827Z
2,016
4
14
4
309
0
422
70
5
3
true
true
false
false
false
false
low
36,650,285
codename one. IOS intercepting URLs issue.
<p>I want my app to be able to intercept urls when opened in an external application. I managed to get it working on android using the android.xintent_filter build hint with the url scheme "http". However it does not work on ios. I added this build hint exactly as instructed here: <a href="http://www.codenameone.com/bl...
I want my app to be able to intercept urls when opened in an external application. I managed to get it working on android using the android.xintent_filter build hint with the url scheme "http". However it does not work on ios. I added this build hint exactly as instructed here: http://www.codenameone.com/blog/intercept...
android|ios|url|codenameone
1
2016-04-15T14:45:21.030Z
2,016
4
14
4
199
2
919
42
4
1
true
false
false
false
false
false
low
36,650,403
Bluetooth Low Energy: RFDuino is not detected
<p>I'm trying to program an App to establish a basic communication over BLE between an Android Phone and an RFDuino. The RFDuino is just advertising and can be detected by the "BLE Scanner" App. Below is the draft code for the activity, that is supposed to detect BLE devices. <br><br></p> <p>The problem is, that no d...
I'm trying to program an App to establish a basic communication over BLE between an Android Phone and an RFDuino. The RFDuino is just advertising and can be detected by the "BLE Scanner" App. Below is the draft code for the activity, that is supposed to detect BLE devices. The problem is, that no devices are detected. ...
android|bluetooth-lowenergy|rfduino
0
2016-04-15T14:50:52.557Z
2,016
4
14
4
252
2
467
45
3
1
true
false
false
false
false
false
zero
36,650,458
how to change the status of togglebutton in pubnub subscribe callback
<p>i would like to change the state of toggle button when pubnub subscribe receive a success callback if the message is equal to a preset string the togglebutton.setchecked(true) else it will call a toast and says connection problem how can this be done in an async process UPDATE :</p> <p>After Trying herry suggestion...
i would like to change the state of toggle button when pubnub subscribe receive a success callback if the message is equal to a preset string the togglebutton.setchecked(true) else it will call a toast and says connection problem how can this be done in an async process UPDATE : After Trying herry suggestion : [CODE] i...
android|pubnub
1
2016-04-15T14:53:27.320Z
2,016
4
14
4
96
2
391
69
2
2
true
false
false
false
false
false
low
36,650,463
Uncheck CheckTextView from ListView so there are only two checked boxes at any time
<p>I have a list view from which the user must choose two teams by checking the boxes and then validate by pressing the OK button. The problem is I want to make it so that there can only be two checked boxes at any time Example : if the user picks team 1 and 2 then the boxes for 1 and 2 should be checked but if the us...
I have a list view from which the user must choose two teams by checking the boxes and then validate by pressing the OK button. The problem is I want to make it so that there can only be two checked boxes at any time Example : if the user picks team 1 and 2 then the boxes for 1 and 2 should be checked but if the user t...
java|android|listview|checkedtextview
0
2016-04-15T14:53:46.280Z
2,016
4
14
4
26
1
569
83
4
2
true
false
false
false
false
false
zero
36,650,499
Populate ExpandableListView with data from SQLite
<p><strong>The setup:</strong> I have a local SQLite database holding showtimes for movies. Some of the columns are "Date", "ID", "Time"...</p> <p><strong>The intention:</strong> I want to put all of these showtimes into a ExpandableListView while the dates are going to be the parent items. </p> <p><strong>The proble...
The setup: I have a local SQLite database holding showtimes for movies. Some of the columns are "Date", "ID", "Time"... The intention: I want to put all of these showtimes into a ExpandableListView while the dates are going to be the parent items. The problem: Nothing is displayed. Nothing at all. And I struggle to und...
android|sqlite|expandablelistview
9
2016-04-15T14:55:35.617Z
2,016
4
14
4
915
1
756
49
3
3
true
false
false
false
false
false
medium
36,650,533
Login/Register app using volley
<p>I am making an android application using android studio for Login/Register and i failed to send the Register information to the .php file.</p> <p>Here is my code:</p> <p>For LoginActivity :</p> <pre><code>import android.app.AlertDialog; import android.content.Intent; import android.os.Bundle; import android.suppo...
I am making an android application using android studio for Login/Register and i failed to send the Register information to the .php file. Here is my code: For LoginActivity : [CODE] For RegisterActivity: [CODE] For RegisterRequest: [CODE] And the Register.php: [CODE] The communication between my database and the Regis...
java|php|android|android-volley
2
2016-04-15T14:57:09.377Z
2,016
4
14
4
2,163
1
689
31
4
4
true
false
false
false
false
false
low
36,650,643
How to align ImageView right
<p>I have a list of insurance companies using a <code>listView</code> and I'm trying to align my arrow images to the right. I have looked at several examples but none seem to work. My code is as fallows</p> <p>myList.xml</p> <pre><code>&lt;?xml version="1.0" encoding="utf-8"?&gt; &lt;LinearLayout xmlns:android="http:...
I have a list of insurance companies using a listView and I'm trying to align my arrow images to the right. I have looked at several examples but none seem to work. My code is as fallows myList.xml [CODE] Main Activity [CODE] The image shows how it currently looks like.
java|android|listview|android-studio
0
2016-04-15T15:02:16.893Z
2,016
4
15
4
253
3
270
28
4
2
true
false
false
false
false
false
zero
36,650,800
SQL lite query reads wrong Id's
<p>It's been long fight between mysql and sql lite date issue. I have a complex query which returns multiple data. </p> <p>I read server Json objects and store them in sql lite android was fine. So i did a query which is like below one </p> <blockquote> <p>"SELECT * FROM " + MAIN_TABLE + " LEFT OUTER JOIN " + SERV...
It's been long fight between mysql and sql lite date issue. I have a complex query which returns multiple data. I read server Json objects and store them in sql lite android was fine. So i did a query which is like below one "SELECT * FROM " + MAIN_TABLE + " LEFT OUTER JOIN " + SERVICE_INFO_TABLE + " ON ServiceInfo.mai...
java|android|mysql|sqlite
0
2016-04-15T15:09:44.437Z
2,016
4
15
4
66
1
1,405
31
4
1
true
false
false
false
false
false
zero
36,650,816
Added View in Ionic shows up plain white
<p>I wanted to add a Login-Screen to my Ionic-App. But somehow the App just goes white when the urlRouterProvider points to the specified path. At the moment it looks like this:</p> <p>login.html (template)</p> <pre><code>&lt;ion-view view-title="login"&gt; &lt;ion-content class="padding"&gt; &lt;label class="i...
I wanted to add a Login-Screen to my Ionic-App. But somehow the App just goes white when the urlRouterProvider points to the specified path. At the moment it looks like this: login.html (template) [CODE] Fairly simple, just to input fields. the app.js containts this: [CODE] Yes, the dash view should be parent of the lo...
javascript|android|html|ionic-framework|ionic2
0
2016-04-15T15:10:29.887Z
2,016
4
15
4
30
1
893
40
5
4
true
false
false
false
false
false
zero
36,651,017
How to change margin or padding of menu items?
<p>Noob question. I'm using Toolbar and menu in Android app. How i can to change margin or padding between two menu items?</p> <p>All answers i found is about Sharlock bar (<a href="https://stackoverflow.com/questions/21131814/how-to-padding-between-actionbars-menu-items-icon-when-using-the-support-librar">https://sta...
Noob question. I'm using Toolbar and menu in Android app. How i can to change margin or padding between two menu items? All answers i found is about Sharlock bar ( https://stackoverflow.com/questions/15678467/how-to-add-padding-between-menu-items-in-android ) or old Action bar ( https://stackoverflow.com/questions/2113...
android
1
2016-04-15T15:20:04.513Z
2,016
4
15
4
2,669
1
547
46
1
1
true
false
true
false
false
false
low
36,651,029
Importing Friendslist from facebook gives an error
<p>I'm having problem with my friendslist that i try to import into my Application, That's the error:</p> <pre><code>04-15 15:09:08.361 13578-13578/com.sitepoint.facebook E/AndroidRuntime: FATAL EXCEPTION: main Process: com.sitepoint.facebook, PID: 13578 java.lang.RuntimeException: Unable to start activity Com...
I'm having problem with my friendslist that i try to import into my Application, That's the error: [CODE] File containing error is FriendsActivity.java : [CODE] The tutorial that I had try to use is https://www.numetriclabz.com/get-facebook-friends-list-in-android-list-view/ I went threw it, looked at the code that's a...
javascript|android
2
2016-04-15T15:20:38.783Z
2,016
4
15
4
59
0
507
50
2
3
true
true
false
false
false
false
low
36,651,088
Error at module.js:341 when trying to add android platform to ionic from command line
<p>I am going to use the Ionic framework to work on hybrid app development, so I installed all the necessary dependencies (node.js, cordova, etc.) and followed their <a href="http://ionicframework.com/getting-started/" rel="nofollow">Getting started</a> section. Step number 3 simply involves running the following comma...
I am going to use the Ionic framework to work on hybrid app development, so I installed all the necessary dependencies (node.js, cordova, etc.) and followed their Getting started section. Step number 3 simply involves running the following command within the app directory: [CODE] However midway during the execution I g...
javascript|android|node.js|ionic-framework|npm
0
2016-04-15T15:23:16.300Z
2,016
4
15
4
1,128
2
815
85
5
2
true
false
false
false
false
false
zero
36,651,092
Creating a Dynamic views in Android inside cardviews (As in to add different phone numbers)
<blockquote> <p>I'm trying to make a contact app which can create contacts and add it to the phone default database. Now the question I came across is, how can I add more text fields for the user to enter more numbers?</p> </blockquote> <ul> <li><p>I was thinking about using defined fields (like in android contacts)...
I'm trying to make a contact app which can create contacts and add it to the phone default database. Now the question I came across is, how can I add more text fields for the user to enter more numbers? I was thinking about using defined fields (like in android contacts) and on creating of the view, show user only one ...
android|textview
0
2016-04-15T15:23:28.123Z
2,016
4
15
4
196
0
781
91
2
0
false
true
false
false
false
false
zero
36,651,142
Cannot receive callbacks `ConnectionCallbackListener#onConnected` using `GoogleApiClient` in background thread in `Service`
<p>I am having receiving connection callbacks for <code>GoogleApiClient</code> in <code>ConnectionCallbackListener#onConnected()</code>. As I understand <a href="https://developers.google.com/android/reference/com/google/android/gms/common/api/GoogleApiClient.Builder#public-methods" rel="nofollow">GoogleApiClient.Build...
I am having receiving connection callbacks for GoogleApiClient in ConnectionCallbackListener#onConnected() . As I understand GoogleApiClient.Builder#setHandler() determines the Handler which will receive these callbacks. If not specified it is on the main thread. However, I am specifically using a GcmTaskService which ...
android|android-service|google-play-services|google-fit
2
2016-04-15T15:25:25.623Z
2,016
4
15
4
217
0
555
123
4
1
true
true
false
false
false
false
low
36,651,184
Update Spinner from another spinner dynamically
<p>I have a fragment that creates controls at runtime, first create a spinner and then the second, the detail is in the second spinner depends on having the first selection. As I can update the data of the second spinner depending on the selection of the first?</p> <p><code></p> <pre><code> final Spinner Combo2 ...
I have a fragment that creates controls at runtime, first create a spinner and then the second, the detail is in the second spinner depends on having the first selection. As I can update the data of the second spinner depending on the selection of the first? [CODE]
android|runtime|spinner
0
2016-04-15T15:27:13.733Z
2,016
4
15
4
117
1
265
47
3
1
true
false
false
false
false
false
zero