-
Replied To a Post in Android Native - How to use MotionLayout
Good article, but I would suggest to rename some of `imageView`as it is not good practice to have multiple of same name in the the project ;) -
Began Watching Android Native - How to use MotionLayout
## Introduction ## Among all of the animation API’s on Android, MotionLayout is one of the best classes to use to create complex animations. It can animate property and motion … -
Replied To a Post in What is the best country to outsource software development to? Why?
@rproffitt @Naheedmir sorry guys but you failed for cheapest trick in online spam. OP did not really cared about development outsourcing, cons and pros. He just wanted to use his … -
Began Watching What is the best country to outsource software development to? Why?
I am confusing about where software development outsourcing are in better quality ? -
Replied To a Post in How to test local variable in method using junit test case?
The idea of testing your code is to have some method that has a return and that is what you want to test. So to get testing going on above … -
Began Watching How to test local variable in method using junit test case?
Hi friends, Being new in junit i have onw question that How to test local variable in method using junit test case? Check that below is my method suppose, public … -
Began Watching Testing double for lack of input
Can anyone tell me what is wrong with this? App crashes if user input is left blank. I was hoping it would display toast and wait for input. EditText userWireInput … -
Replied To a Post in Testing double for lack of input
@Centorpe you should have posted also error message... -
Gave Reputation to Kamran_10 in Connecting Android Application to a local MS SQL Server Database
http://seotoolzz.com/android/android-login-app-with-mssql-server.php Here is the complete description of connecting android login application with mssql server database using JDBC. -
Began Watching Grid Layout Design
Hi everyone, I've no idea how to design the grid layout like this :  My image is square and I want to make it responsive to mobile and … -
Replied To a Post in Grid Layout Design
Some code by you would been good start, since you did not provide one I can only suggest you to read http://android-developers.blogspot.co.uk/2011/11/new-layout-widgets-space-and-gridlayout.html and http://developer.android.com/guide/topics/ui/layout/gridview.html -
Began Watching Google Map on Android shows only grid...
Hi guys OK i have been working on a map soultion in android. I use google places. I have the correct APi key. The place api works well and its … -
Replied To a Post in Google Map on Android shows only grid...
Please share code -
Replied To a Post in DisplayPort to HDMI
I ordered Thunderbolt 2 to DisplayPort cable now. Will see if that works. Nevertheless rather weird that HDMI from Asus laptop did not worked either... -
Edited DisplayPort to HDMI
I bought [Iiyama XB2783HSU-B1DP](http://www.iiyama.com/gb_en/products/prolite-xb2783hsu-b1dp/) monitor. However I'm not able to connect my MacBook Pro 2015 from HDMI with [DisplayPort to HDMI](https://www.alza.co.uk/roline-displayport-hdmi-connection-shielded-2-m-d504901.htm?catid=18848641) cable. From monitor menu I am able to select … -
Created DisplayPort to HDMI
I bought [Iiyama XB2783HSU-B1DP](http://www.iiyama.com/gb_en/products/prolite-xb2783hsu-b1dp/) monitor. However I'm not able to connect my MacBook Pro 2015 from HDMI with [DisplayPort to HDMI](https://www.alza.co.uk/roline-displayport-hdmi-connection-shielded-2-m-d504901.htm?catid=18848641) cable. From monitor menu I am able to select … -
Began Watching DisplayPort to HDMI
I bought [Iiyama XB2783HSU-B1DP](http://www.iiyama.com/gb_en/products/prolite-xb2783hsu-b1dp/) monitor. However I'm not able to connect my MacBook Pro 2015 from HDMI with [DisplayPort to HDMI](https://www.alza.co.uk/roline-displayport-hdmi-connection-shielded-2-m-d504901.htm?catid=18848641) cable. From monitor menu I am able to select … -
Gave Reputation to JamesCherrill in Creating constructors the easy way in netbeans
Yes Right click in the editor Insert Code... Constructor... click the fields you want to include as parameters -
Began Watching Incorrect output of database program
Hello to all! I am doing practice for JDBC and using netbeans 8.1. I created a table in mc access and wrote a program. But the problem is that when … -
Replied To a Post in Incorrect output of database program
Ehmmm silly question will ```` "SELECT *FROM students" ```` actually work? Shouldn't it be with space? ```` "SELECT * FROM students" ```` I haven't touched DBs in ages :P -
Began Watching Response Redirection
Hello guys! I am using netbeans8.1 and apache Tomcat8.0.27.0 I am making a simple web application for practice. I have made two html pages "index.html" and "welcome.html". On page index.html … -
Replied To a Post in Response Redirection
Also good starting point would be NetBeans documentation [here](https://netbeans.org/kb/docs/web/quickstart-webapps.html) -
Began Watching Need help passing user input from one activity to another
Hello guys! I'm currently working on a matching app. In the app, the user can select what mode of difficulty they want(easy, medium, hard and suvival) as well as select … -
Replied To a Post in Need help passing user input from one activity to another
1. There is only one Bundle so no point for creating second (first snippet line 5 & 6) 2. Use [containsKey(String key)](https://developer.android.com/reference/android/os/BaseBundle.html#containsKey(java.lang.String)) to see if bundle contains mode or logo … -
Edited ionic newbie issue with ng-show
Hi Guys, I've been playing around with Angular and Ionic tutorials and I'm attempting to put together things I've learnt from different tutorials to build a simple NPR audio player. … -
Began Watching Parse Query returning null for the columns
public class MainActivity extends ActionBarActivity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); ParseObject.registerSubclass(MyFirstClass.class); Parse.initialize(this, "Id", "Id"); Button button = (Button)findViewById(R.id.button1); button.setOnClickListener(new OnClickListener() { @Override public void onClick(View arg0) … -
Replied To a Post in Parse Query returning null for the columns
Is your `MyFirstClass`some sort of map? Please share that class or we will not be able to help... -
Edited Replacing blank spaces with result from another textview
I have 4 textviews which take their values from dropdown list (spinner) selected at previous screen. There can be either 2 or 4 numbers/letters as result of this selection. The … -
Edited Replacing blank spaces with result from another textview
I have 4 textviews which take their values from dropdown list (spinner) selected at previous screen. There can be either 2 or 4 numbers/letters as result of this selection. The … -
Began Watching Android ListFragment height is not resizing
List Fragment height is not working properly, it only shows 1st row of list, other rows of list dont show. I used wrap content for height but not working. If … -
Replied To a Post in Android ListFragment height is not resizing
Not sure what you are trying to do in this layout but I would suggest to look on this setup http://ivankocijan.xyz/android-nestedscrollview/ You use power of LinearLayout and its option of … -
Edited Android ListFragment height is not resizing
List Fragment height is not working properly, it only shows 1st row of list, other rows of list dont show. I used wrap content for height but not working. If … -
Edited Android ListFragment height is not resizing
List Fragment height is not working properly, it only shows 1st row of list, other rows of list dont show. I used wrap content for height but not working. If … -
Edited Android ListFragment height is not resizing
List Fragment height is not working properly, it only shows 1st row of list, other rows of list dont show. I used wrap content for height but not working. If … -
Edited AngularJS - xml2json
I want to parse json to html, with angularjs, i am converting an xml rss feed to json with npm xml2json I am using angularjs http to get an xml … -
Began Watching android studio TOO SLOW any alternative
I installed android studio on my laptop i5 processor and 4GB ram but it is real slow and it also slows my laptop down. I browsed some forums and read … -
Replied To a Post in android studio TOO SLOW any alternative
I would strongly suggest to get at least 8GB RAM before trying to do any developemtn or it will be very slow. Optimal is 16GB or above. And just side … -
Began Watching How to parse JSON to listview android?
Dear Daniweb friends, I created adapter like this: public class PromotionAdapter { String code = null; String name = null; String continent = null; String region = null; public PromotionAdapter(String … -
Replied To a Post in How to parse JSON to listview android?
[Gson](https://github.com/google/gson) and [Jackson](https://github.com/FasterXML/jackson) are most commonly used JSON parsing libraries. You will create your POJO classes, as you did for `PromotionAdapter`, fetch JSON and then use either of the libraries … -
Began Watching Display Output in Android Studio Logcat
Hi, how do you display database data in logcat? This is new to me since our projects are always ui-based. Thanks. -
Replied To a Post in Display Output in Android Studio Logcat
As anything in Android with [Log](https://developer.android.com/reference/android/util/Log.html) class -
Began Watching Read Microsoft Word file
Hello.. i want to read a microsoft word file and i did search for this subject but i did not find a response. can any one help me, and thank … -
Replied To a Post in Read Microsoft Word file
@alaad here you can find many [samples](http://lmgtfy.com/?q=java+read+microsoft+word+example) -
Began Watching Testing on different physical devices
How do you test an Android app on different devices and screen sizes (not emulator)? So far I'm just assuming that the XML preview I get in design mode means … -
Replied To a Post in Testing on different physical devices
Same here, bunch of devices, tests on [Genymotion](https://www.genymotion.com/#!/) emulator, you can get free version and we have two tester that do manual tests, but also writes lot of Calabash tests … -
Began Watching Android with java
Does android support other language than java? -
Replied To a Post in Android with java
There are cross-platform tools like Titanium(C#), Cordova(HTML5 and jQuery). Also possible with Python, Scala or Kotlin. However these will be always slower than native implementation... -
Began Watching Application is crashing on marker click
Hello everyone i have a problem with my application `onMarkerClick` it works well till i click the marker second time the application crashes here is the code: mMap.setOnMarkerClickListener(new GoogleMap.OnMarkerClickListener() { … -
Replied To a Post in Application is crashing on marker click
Hard to say without seeing more of the code. Often the problem is how you inflate components or how you are discharging views once not need it. I would have … -
Began Watching Get input from another class
Hello guys i have a really dumb problem i have two classes the first class is where the input value needs to be applied/readed and the second is where is …
The End.