I have very strange problem in eclipse for java (android programming)
This is ALL of my code : (an array and site of that array into int value)
int[] Values = new int[]{ 5, 12, 4, 2, 4 };
int Size = Values.length;
Log.i(Size);
error --^
eclipse gives this error :
The method i(String, String) in the type Log is not applicable for the arguments (int)
What is the problem ?
How to solve it?