Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialSlava Fleer
6,086 PointsWhen I did as says in video about onItemClick i have an error.
there is my code
package teamtreehouse.com.stormy.ui;
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.os.Parcelable;
import android.view.View;
import android.widget.AdapterView;
import android.widget.ListView;
import android.widget.TextView;
import android.widget.Toast;
import java.util.Arrays;
import butterknife.ButterKnife;
import butterknife.InjectView;
import teamtreehouse.com.stormy.R;
import teamtreehouse.com.stormy.adapters.DayAdapter;
import teamtreehouse.com.stormy.weather.Day;
public class DailyForecastActivity extends Activity {
private Day[] mDays;
@InjectView(android.R.id.list) ListView mListView;
@InjectView(android.R.id.empty) TextView mEmptyTextView;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_daily_forecast);
ButterKnife.inject(this);
Intent intent = getIntent();
Parcelable[] parcelables = intent.getParcelableArrayExtra(MainActivity.DAILY_FORECAST);
// source, length, type
mDays = Arrays.copyOf(parcelables, parcelables.length, Day[].class);
DayAdapter adapter = new DayAdapter(this, mDays);
mListView.setAdapter(adapter);
mListView.setEmptyView(mEmptyTextView);
mListView.setOnClickListener(new AdapterView.OnItemClickListener() {
@Override
public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
String dayOfTheWeek = mDays[position].getDayOfTheWeek();
String conditions = mDays[position].getSummary();
String highTemp = mDays[position].getTemperatureMax() + "";
String message = String.format("On %s the high will be %S and and it will be %s",
dayOfTheWeek, highTemp, conditions);
Toast.makeText(DailyForecastActivity.this, message, Toast.LENGTH_LONG).show();
}
});
}
}
and the error is: " setOnClickListener (android.view.View.OnClickListener) in AdapterView cannot be applied to (android.widget.AdapterView.OnItemClickListener)
thanks for help
1 Answer
Steve Hunter
57,712 PointsI think you should be trying to use the setOnItemClickListener
not the setOnClickListener
.
Let me know if that helps.
Steve.
Slava Fleer
6,086 PointsSlava Fleer
6,086 Pointsthanks. it was the problem. =) need to check more carefully the android studio suggestions for auto completion =)
Michael Partridge
7,129 PointsMichael Partridge
7,129 PointsAwesome thanks a bunch!