-1

I created a set of floating action buttons under a floating action menu, but I can't change the floating action menu icon when I click the floating action button.

How can I change the floating action menu icon in Android?

Laurel
  • 5,965
  • 14
  • 31
  • 57
Dinesh
  • 9
  • 4

3 Answers3

0

Check properly that you have added the dependency. The official version available in JCenter. Try the below.

compile 'com.android.volley:volley:1.0.0'

refer the link

Ayyappan
  • 1,275
  • 1
  • 11
  • 25
0

Download volley.jar from Here.

  1. Right click on your project.

  2. Go to properties -> Java Build Path -> Libraries tab & click on Add External JARs..

  3. Select your downloaded Volley.jar & there you go you can use volley function easily now.

Though i have given this, I strictly recommend you to migrate from eclipse to Android Studio.

Community
  • 1
  • 1
Janki Gadhiya
  • 4,492
  • 2
  • 29
  • 59
-1

Your not found StringRequest class from volley library. Please check application property and check have you add library or .jar file?

Michele La Ferla
  • 6,775
  • 11
  • 53
  • 79
ViratBhavsar
  • 104
  • 4
  • i add a volley lib but i get an same issue java.lang.ClassNotFoundException: com.android.volley.toolbox.StringRequest – Dinesh Jul 07 '16 at 13:37
  • Put the same version android support library in your project and library projects you included and clean build. – ViratBhavsar Jul 07 '16 at 13:40
  • open your appcompat_v7 library and in this lib folder copy the v7.jar or v-4and past it from your project lib folder. then clean the project and run it. – ViratBhavsar Jul 07 '16 at 13:46