自定义列表视图中的可单击按钮

时间:2015-09-14 03:25:24

标签: c# android listview xamarin

我的问题是我无法将我在自定义列表视图中添加的按钮设为可点击。

以下是我的自定义列表视图的XML文件:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="335dp"
    android:layout_height="100dp"
    android:minHeight="80dp"
    android:maxHeight="250dp"
    android:background="#ffffff"
    android:id="@+id/list"
    android:baselineAligned="false"
    android:longClickable="false"
    android:descendantFocusability="blocksDescendants"
    android:clickable="false">
    <Button
        android:background="@drawable/grbgCan"
        android:layout_width="15dp"
        android:layout_height="20dp"
        android:id="@+id/deleteMemo"
        android:layout_gravity="start"
        android:layout_marginLeft="270dp"
        android:layout_marginTop="5dp"
        android:duplicateParentState="false"
        android:clickable="true" />
    <TextView
        android:text="Text"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:id="@+id/id"
        android:layout_marginLeft="290dp"
        android:layout_marginTop="-20dp"
        android:layout_marginRight="15dp"
        android:clickable="true" />
    <TextView
        android:id="@+id/top"
        android:text="Title"
        android:textColor="#ff7e7777"
        android:textAppearance="?android:attr/textAppearanceSmall"
        android:layout_width="255.5dp"
        android:layout_height="19.9dp"
        android:paddingLeft="10dp"
        android:layout_marginTop="-20dp" />
    <TextView
        android:id="@+id/bottom"
        android:textColor="#ff7e7777"
        android:textAppearance="?android:attr/textAppearanceSmall"
        android:layout_width="match_parent"
        android:layout_height="63.3dp"
        android:paddingLeft="50dp"
        android:layout_gravity="left"
        android:text="Note" />
    <TextView
        android:text="Text"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:id="@+id/date"
        android:layout_marginLeft="250dp"
        android:layout_marginRight="5dp" />
</LinearLayout>

在我的主要活动中,我尝试了Btn.Click事件,但它只产生错误。从我在类似问题中看到的,他们的按钮在他们的数组适配器中初始化,但我使用SimpleCursorAdapter因为我从我的sqlite数据库中获取数据。

那我该怎么办?请不要给我java代码,因为有些它们不适用于xamarin studio,因为它是c#。谢谢。

1 个答案:

答案 0 :(得分:0)

尝试这样的事情(如果你没有片段删除视图。下面)

var _view = view.FindViewById<ListView>(Resource.Id.listView1);
if (_view.ChildCount > 0){
Button _button = (Button)_view.GetItemAtPosition(0).GetChildAt(0);
}

因为列表中有很多类似的对象,这是我认为访问它们的唯一方法, 请记住,项目位置是相对于屏幕上当前可见的项目而您无法访问不可见的项目