我正在尝试按照此网站上的示例制作ListView活动
http://cyrilmottier.com/2011/11/23/listview-tips-tricks-4-add-several-clickable-areas/
我正在使用我的数据库中的数据并使用BaseAdapter一切似乎工作正常(onListItemClick,textview加载我的数据)但列表项右侧的“play”按钮将无效.I我在list-items xml中使用了framelayout,如果有帮助的话。
--- --- UPDATE
这些答案都没有解决我的问题但是在摆弄后我得到第一个进入播放按钮工作,但其他入口播放按钮不起作用只有第一个工作。 这是我的列表活动和xml的新代码。
PlayAFriend活动
package com.fullfrontalgames.numberfighter;
import com.fullfrontalgames.numberfighter.DBAdapter;
import com.fullfrontalgames.numberfighter.R;
import android.app.ListActivity;
import android.content.Intent;
import android.database.Cursor;
import android.os.Bundle;
import android.support.v4.widget.SimpleCursorAdapter;
import android.view.View;
import android.widget.AdapterView;
import android.widget.AdapterView.OnItemClickListener;
import android.widget.Button;
import android.widget.ListAdapter;
import android.widget.ListView;
import android.widget.Toast;
public class PlayAFriend extends ListActivity{
DBAdapter DBAdapter;
@Override
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
setContentView(R.layout.list_items);
final DBAdapter db = new DBAdapter(this);
DBAdapter = db.open();
ListView FriendLV = (ListView) findViewById(android.R.id.list);
Button playbutton = (Button) findViewById(R.id.playbutton);
FriendLV.setOnItemClickListener(new OnItemClickListener() {
@Override
public void onItemClick(AdapterView<?> arg0, View arg1, int arg2,
long arg3) {
// TODO Auto-generated method stub
Toast.makeText(getBaseContext(), "test", Toast.LENGTH_SHORT).show();
}
});
playbutton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
// TODO Auto-generated method stub
startActivity(new Intent("com.fullfrontalgames.numberfighter.Fightattacker"));
}
});
Cursor friendslist = db.GetAllFriends();
String[] from = new String[] {"FRIENDS"}; // your column/columns here
int[] to = new int[] {R.id.textview_friends};
@SuppressWarnings("deprecation")
ListAdapter cursorAdapter = new SimpleCursorAdapter(this, R.layout.list_items, friendslist, from, to,0);
FriendLV.setAdapter(cursorAdapter);
}
}
list_items xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:descendantFocusability="blocksDescendants"
android:orientation="vertical" >
<ListView
android:id="@android:id/list"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >
</ListView>
<FrameLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="5dp"
android:background="@drawable/searchimageview"
android:orientation="vertical" >
<TextView
android:id="@+id/textview_friends"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="@color/black"
android:textStyle="bold"
android:textSize="40dp"
android:layout_gravity="center" />
<Button
android:id="@+id/playbutton"
android:layout_width="60dp"
android:layout_height="60dp"
android:layout_gravity="right"
android:background="@drawable/playbutton" />
</FrameLayout>
</LinearLayout>
答案 0 :(得分:0)
可能是你的方式错误。你必须尝试使用textView
这个已经使用button
的链接。
http://wowjava.wordpress.com/2011/03/26/dynamic-listview-in-android/
如果您有任何问题,请告诉我。
答案 1 :(得分:0)
尝试以下
在getView()
中 Button b=(Button) convertView.findViewById(R.id.playbutton);
b.setOnClickListener(new OnClickListener()
{
if (position != ListView.INVALID_POSITION) {
startActivity(newIntent("com.fullfrontalgames.numberfighter.Fightattacker"));
}
});
此外,您应该使用ViewHolder进行平滑滚动和性能。有关详情,请参阅以下链接。
http://developer.android.com/training/improving-layouts/smooth-scrolling.html
答案 2 :(得分:0)
更新
对于迟到的更新感到抱歉,但我自己通过在我的播放按钮中添加一个android:onClick属性,然后在我的班级中定义公共onButtonClick方法来解决这个问题。
<Button
android:id="@+id/playbutton"
android:layout_width="60dp"
android:layout_height="60dp"
android:layout_gravity="right"
android:onClick="OnButtonClick"
android:background="@drawable/playbutton" />
类
public void OnButtonClick(View view) {
startActivity(new Intent(
"com.fullfrontalgames.numberfighter.Fightattacker"));
}