• Member Avatar for peter_budo
    peter_budo

    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 ;)
  • Member Avatar for peter_budo
    peter_budo

    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 …
  • Member Avatar for peter_budo
    peter_budo

    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 …
  • Member Avatar for peter_budo
    peter_budo

    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 ?
  • Member Avatar for peter_budo
    peter_budo

    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 …
  • Member Avatar for peter_budo
    peter_budo

    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 …
  • Member Avatar for peter_budo
    peter_budo

    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 …
  • Member Avatar for peter_budo
    peter_budo

    Replied To a Post in Testing double for lack of input

    @Centorpe you should have posted also error message...
  • Member Avatar for peter_budo
    peter_budo

    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.
  • Member Avatar for peter_budo
    peter_budo

    Began Watching Grid Layout Design

    Hi everyone, I've no idea how to design the grid layout like this : ![unnamed.png](/attachments/small/3/47d9a91730b2938e6dc33cc5102761ec.png "align-left") My image is square and I want to make it responsive to mobile and …
  • Member Avatar for peter_budo
    peter_budo

    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
  • Member Avatar for peter_budo
    peter_budo

    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 …
  • Member Avatar for peter_budo
    peter_budo

    Replied To a Post in Google Map on Android shows only grid...

    Please share code
  • Member Avatar for peter_budo
    peter_budo

    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...
  • Member Avatar for peter_budo
    peter_budo

    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 …
  • Member Avatar for peter_budo
    peter_budo

    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 …
  • Member Avatar for peter_budo
    peter_budo

    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 …
  • Member Avatar for peter_budo
    peter_budo

    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
  • Member Avatar for peter_budo
    peter_budo

    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 …
  • Member Avatar for peter_budo
    peter_budo

    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
  • Member Avatar for peter_budo
    peter_budo

    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 …
  • Member Avatar for peter_budo
    peter_budo

    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)
  • Member Avatar for peter_budo
    peter_budo

    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 …
  • Member Avatar for peter_budo
    peter_budo

    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 …
  • Member Avatar for peter_budo
    peter_budo

    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. …
  • Member Avatar for peter_budo
    peter_budo

    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) …
  • Member Avatar for peter_budo
    peter_budo

    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...
  • Member Avatar for peter_budo
    peter_budo

    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 …
  • Member Avatar for peter_budo
    peter_budo

    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 …
  • Member Avatar for peter_budo
    peter_budo

    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 …
  • Member Avatar for peter_budo
    peter_budo

    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 …
  • Member Avatar for peter_budo
    peter_budo

    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 …
  • Member Avatar for peter_budo
    peter_budo

    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 …
  • Member Avatar for peter_budo
    peter_budo

    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 …
  • Member Avatar for peter_budo
    peter_budo

    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 …
  • Member Avatar for peter_budo
    peter_budo

    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 …
  • Member Avatar for peter_budo
    peter_budo

    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 …
  • Member Avatar for peter_budo
    peter_budo

    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 …
  • Member Avatar for peter_budo
    peter_budo

    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 …
  • Member Avatar for peter_budo
    peter_budo

    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.
  • Member Avatar for peter_budo
    peter_budo

    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
  • Member Avatar for peter_budo
    peter_budo

    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 …
  • Member Avatar for peter_budo
    peter_budo

    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)
  • Member Avatar for peter_budo
    peter_budo

    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 …
  • Member Avatar for peter_budo
    peter_budo

    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 …
  • Member Avatar for peter_budo
    peter_budo

    Began Watching Android with java

    Does android support other language than java?
  • Member Avatar for peter_budo
    peter_budo

    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...
  • Member Avatar for peter_budo
    peter_budo

    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() { …
  • Member Avatar for peter_budo
    peter_budo

    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 …
  • Member Avatar for peter_budo
    peter_budo

    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.