单击android ListActivity中的项目不起作用

时间:2013-04-25 15:04:31

标签: android imageview listactivity listadapter

我有自定义ArrayAdapter的ListActivity以及列表项的以下布局:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="horizontal" 
android:paddingTop="5dip"
android:paddingBottom="5dip" >

<ImageView
    android:id="@+id/image"
    android:layout_width="48dip"
    android:layout_height="48dip" />

<LinearLayout
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >

    <TextView
        android:id="@+id/text1"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:textColor="@color/white"
        android:textSize="24.5sp" />

    <TextView
        android:id="@+id/text2"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:textColor="@color/white" 
        android:textSize="12sp"/>
</LinearLayout>

我的问题是,我无法点击任何列表项。到目前为止我尝试过的是 将focusableclickable设置为false(我发现可能有帮助)到我的ImageView 但不幸的是,问题仍然存在。请帮忙,这一直困扰着我。谢谢。

编辑:好的,所以威廉的回答帮助我解决了这个问题,现在唯一的问题是,当我将背景颜色更改为黑色时,点击项目不会突出显示它(通过在清单中为此列表活动设置新主题) 。 这是我<style name="ContentsListTheme"> <item name="android:background">@color/black</item> </style>文件夹中活动主题res/values/styles/的自定义样式。

为清楚起见,默认的ListActivity背景颜色再次为白色。我希望它变黑。当我应用上面的样式时,禁用单击列表时突出显示的活动项目。如何再次启用默认突出显示颜色?

3 个答案:

答案 0 :(得分:1)

oncreate试试这个

ListView lv = getListView();
lv.setTextFilterEnabled(true);
lv.setOnItemClickListener(new OnItemClickListener() {
          public void onItemClick(AdapterView<?> parent, View view,
    int position, long id) {
});

OR 您可以编写此功能来处理点击列表项

protected void onListItemClick(ListView l, View v, int position, long id) {}

答案 1 :(得分:0)

我有这个工作代码,我认为在您的Java代码中存在问题。

public class NewsListActivity extends Activity implements OnItemClickListener

...

public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.list);
        listView = (ListView) findViewById(R.id.listView);
        listView.setAdapter(new NewsDataArrayAdapter(NewsListActivity.this, headlines));
        listView.setOnItemClickListener(this);

...

public void onItemClick(AdapterView<?> parent, View v, int position, long id) {
        if (v == null) {
            return;
        }

答案 2 :(得分:0)

试试这个

ListView lv=(ListView)findViewById(yourlistview);
Lv.setonItemClickListener(this);

public void onItemClick(AdapterView<?> parent, View view, int position, long id) {

    paret.getItemAtPositon(position);
    //this returns you an object cast it into the same object you passed to your adapter cast to string if values passed were string
}