• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Search results

  1. B

    Apps Height and width as percentage or another solution

    Hello. I posted a thread here http://stackoverflow.com/questions/35084780/height-and-width-as-percentage-or-another-solution . Can anybody think of some solutions ? Thank you.
  2. B

    Apps Instagram like app realm vs cursorLoader

    I have an instagram like app in which I receive data from a server(imageUrl, username, about) and I store it in a cursorLoader and after that I take the data from the cursorLoader and put it in a RecyclerAdapter. The images are being loaded using the Volley library. I recently found out about...
  3. B

    Apps JSON response from server different than expected

    I'm trying to create a login application on android and I get an error telling me that the JSON object is null. I get the error from here : public JSONObject loginUser(String email, String password){ // Building Parameters List<NameValuePair> params = new...
  4. B

    Apps How can I resize an image of 720x1080 to display on every device ?

    I have an image that I'm using as a background for an app. I really like how it looks. I would like the android device to resize it automatically. I tried to use Picasso library with : Picasso.with(context).load("http://i.imgur.com/DvpvklR.png").into(imageView); this will work but it takes...
  5. B

    Apps How to change color of menu item icon in android?

    I have the following menu item: <item android:id="@+id/icon_two" android: orderInCategory="100" android:icon="@android:drawable/ic_secure" android:title="Secure Function" app:showAsAction="ifRoom" /> but it's on black...
  6. B

    Apps How can I make a SeekBar in android go from 100 to 0 instead of the default?

    I have a seekBar in android studio which is working, but I would like to make it go from 100 to 0 instead of 0 to 100. How can I do this ? I've been trying to work with the progress but I won't get it done. Thank you:D Solved it. Sorry for posting.
  7. B

    Apps How can I make ChiralCode - Android-Color-Picker appear in a dialog window?

    I found the following link 'https://github.com/chiralcode/Android-Color-Picker'. I copied `ColorPicker.java' and `ColorPickerDialog.java' . I've been trying to make that dialog box appear somehow .. but I still can't figure it out. If you run the initial app you can see that it has a color...