- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个项目 ListView ,每个项目都有一些 ImageView 和 TextView 。我在谷歌上搜索了很多解决方案,但没有一个对我有帮助。我是 android 开发的新手,我想我失去了一些明显的东西。我还假设也许我尝试了太多的解决方案,并且它们以某种方式相互阻塞。请帮帮我。这是我的代码:
public class MyActivity extends Activity {
private List<Lesson> lessons = new ArrayList<Lesson>();
private int loop_count = 0;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.my_layout);
FillLessonList();
FillListView();
}
private void FillListView()
{
ArrayAdapter<Lesson> adapter = new MyListAdapter();
ListView list = (ListView) findViewById(R.id.lessonsList);
list.setAdapter(adapter);
list.setOnItemClickListener(new AdapterView.OnItemClickListener() {
public void onItemClick(AdapterView<?> parent, View view,
int position, long id) {
Log.i("debug", "item click: " + view.findViewById(R.id.lesson_text_lesson_name));
Toast.makeText(getApplicationContext(), "Your toast message.",
Toast.LENGTH_SHORT).show();
Intent intent = new Intent(view.getContext(), LessonActivity.class);
startActivity(intent);
}
});
}
private class MyListAdapter extends ArrayAdapter<Lesson>
{
MyListAdapter()
{
super(MyActivity.this, R.layout.lesson_item, lessons);
}
@Override
public View getView(int position, View convertView, ViewGroup parent) {
View lessonView = convertView;
if(lessonView == null)
{
lessonView = getLayoutInflater().inflate(R.layout.lesson_item, parent, false);
}
Lesson currentLesson = lessons.get(position);
//here I add all the needed info into the item.
//This part works fine and displays everything I need properly.
return lessonView;
}
每次点击真正记录的唯一内容是:
05-18 17:10:57.158 29101-29101/h2d.drawteam.howtodraw D/AbsListView: Touch down: touch mode = 0,mScrollY = 0,y = 122.7923,mFirstPosition = 0,mActivePointerId = 0,mDataChanged = false,adatper size = 15,this = android.widget.ListView{32614ed4 VFED.VC. .F...... 60,0-1020,1599 #7f0d0076 app:id/lessonsList}
05-18 17:10:57.258 29101-29101/h2d.drawteam.howtodraw D/AbsListView: CheckForTap:mFirstPosition = 0,mMotionPosition = 0,child = android.widget.RelativeLayout{3506a91f V.E..... ........ 0,0-960,225}
05-18 17:10:57.293 29101-29101/h2d.drawteam.howtodraw D/AbsListView: Touch up: touch mode = 1,mScrollY = 0,mLastY = -2147483648,mMotionPosition = 0,mFirstPosition = 0,mDataChanged = false,adatper size = 15,this = android.widget.ListView{32614ed4 VFED.VC. .F...... 60,0-1020,1599 #7f0d0076 app:id/lessonsList}
这是我的主要布局 xml 文件:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/bg_clear"
android:orientation="vertical"
android:paddingTop="10dp"
android:paddingBottom="10dp">
<LinearLayout
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:id="@+id/container_button_back"
android:paddingRight="25dp"
android:paddingLeft="25dp"
android:paddingTop="5dp"
android:paddingBottom="5dp"
android:weightSum="1">
<Button
android:layout_width="64dp"
android:layout_height="31dp"
android:id="@+id/button_back"
android:background="@drawable/back_button_fit"
android:maxHeight="50dp"
android:maxWidth="80dp"
android:adjustViewBounds="true"
android:longClickable="false"
android:enabled="false"
android:focusable="false"
android:focusableInTouchMode="false"
android:singleLine="false" />
</LinearLayout>
<ImageView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/imageView"
android:src="@drawable/separator_1" />
<LinearLayout
android:orientation="vertical"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/container_list"
android:paddingLeft="20dp"
android:paddingRight="20dp"
android:paddingBottom="5dp">
<ListView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:id="@+id/lessonsList"
android:dividerHeight="0dp"
android:divider="@null"
android:descendantFocusability="blocksDescendants"/>
</LinearLayout>
这是我的列表项 xml 文件:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent" android:layout_height="match_parent"
android:clickable="false"
android:paddingLeft="0dp"
android:paddingRight="10dp">
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/lesson_icon"
android:layout_alignParentTop="true"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"
android:src="@drawable/abc_btn_check_material"
android:minHeight="75dp"
android:minWidth="75dp"
android:focusable="false"
android:focusableInTouchMode="false"
android:clickable="false"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceMedium"
android:text="@string/default_lesson_name"
android:id="@+id/lesson_text_lesson_name"
android:layout_marginTop="17dp"
android:layout_alignParentTop="true"
android:textSize="18sp"
android:maxLines="1"
android:layout_toLeftOf="@+id/lesson_rate"
android:layout_toRightOf="@+id/lesson_icon"
android:layout_toEndOf="@+id/lesson_icon"
android:focusable="false"
android:focusableInTouchMode="false"
android:clickable="false"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceSmall"
android:text="@string/default_steps"
android:id="@+id/lesson_text_steps"
android:layout_below="@+id/lesson_text_lesson_name"
android:layout_toRightOf="@+id/lesson_icon"
android:layout_toEndOf="@+id/lesson_icon"
android:textSize="12sp"
android:focusable="false"
android:focusableInTouchMode="false"
android:clickable="false"/>
<ImageButton
android:layout_width="200dp"
android:layout_height="wrap_content"
android:id="@+id/lesson_rate"
android:src="@drawable/rate1"
android:baselineAlignBottom="false"
android:background="#00000000"
android:layout_above="@+id/lesson_text_steps"
android:layout_alignParentRight="true"
android:layout_alignParentEnd="false"
android:paddingRight="10dp"
android:adjustViewBounds="true"
android:cropToPadding="false"
android:scaleType="centerInside"
android:focusable="false"
android:focusableInTouchMode="false"
android:clickable="false"/>
<ImageButton
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:id="@+id/lesson_separator"
android:src="@drawable/separator"
android:background="#00000000"
android:adjustViewBounds="true"
android:layout_alignBottom="@+id/lesson_icon"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"
android:focusable="false"
android:focusableInTouchMode="false"
android:clickable="false"/>
最佳答案
试试这个
list.setOnItemClickListener(new AdapterView.OnItemClickListener()
{
@Override
public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
Log.i("debug", "item click: " + view.findViewById(R.id.lesson_text_lesson_name));
Toast.makeText(getApplicationContext(), "Your toast message.",
Toast.LENGTH_SHORT).show();
Intent intent = new Intent(view.getContext(), LessonActivity.class);
startActivity(intent);
}
});
或
list.setOnItemClickListener(new AdapterView.OnItemSelectedListener() {
@Override
public void onItemSelected(AdapterView<?> parent, View view, int position, long id) {
Log.i("debug", "item click: " + view.findViewById(R.id.lesson_text_lesson_name));
Toast.makeText(getApplicationContext(), "Your toast message.",
Toast.LENGTH_SHORT).show();
Intent intent = new Intent(view.getContext(), LessonActivity.class);
startActivity(intent);
}
@Override
public void onNothingSelected(AdapterView<?> parent) {
}
});
替代方法
@Override
public View getView(int position, View convertView, ViewGroup parent) {
View lessonView = convertView;
if(lessonView == null)
{
lessonView = getLayoutInflater().inflate(R.layout.lesson_item, parent, false);
}
Lesson currentLesson = lessons.get(position);
//here I add all the needed info into the item.
//This part works fine and displays everything I need properly.
lessonView.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Log.e(""testing123,"testing");
Toast.makeText(MyActivity.this, "Your toast message.",
Toast.LENGTH_SHORT).show();
Intent intent = new Intent(MyActivity.this, LessonActivity.class);
startActivity(intent);
}
});
return lessonView;
}
关于android - ListView setOnItemClickListener 不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37302369/
我在Windows 10中使用一些简单的Powershell代码遇到了这个奇怪的问题,我认为这可能是我做错了,但我不是Powershell的天才。 我有这个: $ix = [System.Net.Dn
var urlsearch = "http://192.168.10.113:8080/collective-intellegence/StoreClicks?userid=" + userId +
我有一个非常奇怪的问题,过去两天一直让我抓狂。 我有一个我试图控制的串行设备(LS 100 光度计)。使用设置了正确参数的终端(白蚁),我可以发送命令(“MES”),然后是定界符(CR LF),然后我
我目前正试图让无需注册的 COM 使用 Excel 作为客户端,使用 .NET dll 作为服务器。目前,我只是试图让概念验证工作,但遇到了麻烦。 显然,当我使用 Excel 时,我不能简单地使用与可
我开发了简单的 REST API - https://github.com/pavelpetrcz/MandaysFigu - 我的问题是在本地主机上,WildFly 16 服务器的应用程序运行正常。
我遇到了奇怪的情况 - 从 Django shell 创建一些 Mongoengine 对象是成功的,但是从 Django View 创建相同的对象看起来成功,但 MongoDB 中没有出现任何数据。
我是 flask 的新手,只编写了一个相当简单的网络应用程序——没有数据库,只是一个航类搜索 API 的前端。一切正常,但为了提高我的技能,我正在尝试使用应用程序工厂和蓝图重构我的代码。让它与 pus
我的谷歌分析 JavaScript 事件在开发者控制台中运行得很好。 但是当从外部 js 文件包含在页面上时,它们根本不起作用。由于某种原因。 例如; 下面的内容将在包含在控制台中时运行。但当包含在单
这是一本名为“Node.js 8 the Right Way”的书中的任务。你可以在下面看到它: 这是我的解决方案: 'use strict'; const zmq = require('zeromq
我正在阅读文本行,并创建其独特单词的列表(在将它们小写之后)。我可以使它与 flatMap 一起工作,但不能使它与 map 的“子”流一起工作。 flatMap 看起来更简洁和“更好”,但为什么 di
我正在编写一些 PowerShell 脚本来进行一些构建自动化。我发现 here echo $? 根据前面的语句返回真或假。我刚刚发现 echo 是 Write-Output 的别名。 写主机 $?
关闭。这个问题不满足Stack Overflow guidelines .它目前不接受答案。 想改善这个问题吗?更新问题,使其成为 on-topic对于堆栈溢出。 4年前关闭。 Improve thi
我将一个工作 View Controller 类从另一个项目复制到一个新项目中。我无法在新项目中加载 View 。在旧项目中我使用了presentModalViewController。在新版本中,我
我对 javascript 很陌生,所以很难看出我哪里出错了。由于某种原因,我的功能无法正常工作。任何帮助,将不胜感激。我尝试在外部 js 文件、头部/主体中使用它们,但似乎没有任何效果。错误要么出在
我正在尝试学习Flutter中的复选框。 问题是,当我想在Scaffold(body :)中使用复选框时,它正在工作。但我想在不同的地方使用它,例如ListView中的项目。 return Cente
我们当前使用的是 sleuth 2.2.3.RELEASE,我们看不到在 http header 中传递的 userId 字段没有传播。下面是我们的代码。 BaggageField REQUEST_I
我有一个组合框,其中包含一个项目,比如“a”。我想调用该组合框的 Action 监听器,仅在手动选择项目“a”完成时才调用。我也尝试过 ItemStateChanged,但它的工作原理与 Action
你能看一下照片吗?现在,一步前我执行了 this.interrupt()。您可以看到 this.isInterrupted() 为 false。我仔细观察——“这个”没有改变。它具有相同的 ID (1
我们当前使用的是 sleuth 2.2.3.RELEASE,我们看不到在 http header 中传递的 userId 字段没有传播。下面是我们的代码。 BaggageField REQUEST_I
我正在尝试在我的网站上设置一个联系表单,当有人点击发送时,就会运行一个作业,并在该作业中向所有管理员用户发送通知。不过,我在失败的工作表中不断收到此错误: Illuminate\Database\El
我是一名优秀的程序员,十分优秀!