gpt4 book ai didi

android - onItemClick 的问题

转载 作者:太空狗 更新时间:2023-10-29 16:09:18 26 4
gpt4 key购买 nike

这可能真的很长,我很抱歉读完这一切的可怜人。

目标:我想创建一个 Pokemon Pokedex 应用程序(是的,我知道很幼稚)。我认为这对于构建第一个应用程序非常有用,因为有大量数据需要处理。对于那些不熟悉口袋妖怪的人来说,它基本上是#001 - #649 列表中的生物。我想在列表中显示所有生物并让用户单击该生物。单击该生物后,它将在不同的屏幕上显示有关它的统计信息。

好的回到编程...

package com.pokemon.pokdex;

import android.app.ListActivity;
import android.os.Bundle;
import android.widget.AdapterView;
import android.widget.AdapterView.OnItemClickListener;
import android.widget.ArrayAdapter;

public class PokedexActivity extends ListActivity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);

setListAdapter(ArrayAdapter.createFromResource(getApplicationContext(),
R.array.pokemon_titles, R.layout.list_item));

final String[] links = getResources().getStringArray(R.array.pokemon_stats);

getListView().setOnItemClickListener(new OnItemClickListener() {

@Override
public void onItemClick(AdapterView<?> parent, View view,
int position, long id) {
String content = links[position];
}
});
}
}

我在 getListView().setOnItemClickListener(new OnItemClickListener() { 上遇到错误哪里说 OnItemClickListener()View view ,.它说The type new AdapterView.OnItemClickListener(){} must implement the inherited abstract method AdapterView.OnItemClickListener.onItemClick(AdapterView<?>, View, int, long)对于 OnItemClickListener()并且 View 无法解析为 View view, 的类型

package com.pokemon.pokdex;

import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.webkit.WebView;
import android.widget.ArrayAdapter;

public class PokedexViewActivity extends Activity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.pokemon_stats);

};
}

在这个文件上,我在 setContentView(R.layout.pokemon_stats); 上收到错误这是错误 pokemon_stats cannot be resolved or is not a field

我的 string.xml 文件看起来像(这是设置口袋妖怪和统计数据的地方。我在下面做了第一个口袋妖怪。)

<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="hello">Pokemon Pokedex</string>
<string name="app_name">Pokedex</string>
<string-array name="pokemon_titles">
<item>#001 - Bulbasaur</item>
</string-array>
<string-array name="pokemon_stats">
<item>Grass Type</item>
</string-array>
</resources>

我的 main.xml 看起来像

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/hello"
/>
</LinearLayout>

我的 list_item.xml 看起来像

<?xml version="1.0" encoding="utf-8"?>
<TextView
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textSize="24dp"
android:padding="6dp" />

感谢任何帮助,如果你做到了这一点,谢谢你:)

编辑:更新并添加了我遇到的确切错误。

最佳答案

对于您的错误 setContentView(R.layout.pokemon_stats); pokemon_stats 不是布局。 main.xml 是您的布局。 pokemon_stats 是一个字符串数组,这是你的问题。没有名为 pokemon_stats.xml 的布局,我想你需要 R.layout.main

还有,为什么这里的后面有一个分号?

public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.pokemon_stats);

};

编辑: 在你的另一个错误的顶部,那个有 View 的错误,你忘记导入 android.view.View;添加这个。您可以保留原始代码。

import android.view.View;

应该是这样,真的。

关于android - onItemClick 的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7000436/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com