I keep getting this error in my Main.Activity.java.
The Method i(String, String) is undefined for the type Log
The error in this line is:
Log.i("HelloListView", "You clicked Item: " + id + " at position:" + position);
I do not know what is wrong, so here is my whole MainActivity.java. If someone can help, it will be great.
package com.example.uc.pf; import org.apache.commons.logging.Log; import android.app.Activity; import android.content.Intent; import android.os.Bundle; import android.view.View; import android.view.Window; import android.widget.AdapterView; import android.widget.AdapterView.OnItemClickListener; import android.widget.ListView; public class MainActivity extends Activity implements OnItemClickListener { @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); requestWindowFeature(Window.FEATURE_NO_TITLE); setContentView(R.layout.activity_main);
source share