0

请与我打交道,因为我是 android 新手,我自己做了很多搜索,关于这个,我厌倦了找不到合适的方法。

这是我的自定义列表视图模板。行按钮布局.xml。

    <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content" >

    <TextView
        android:id="@+id/label"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@+id/label"
        android:textSize="19.6dp" >
    </TextView>

   <CheckBox
        android:id="@+id/check"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentRight="true"
        android:layout_marginLeft="3.6dp"
        android:layout_marginRight="9.6dp" >
    </CheckBox>

   <TextView
       android:id="@+id/result"
       android:layout_width="wrap_content"
       android:layout_height="wrap_content"
       android:layout_alignBaseline="@+id/check"
       android:layout_alignBottom="@+id/check"
       android:layout_toLeftOf="@+id/check"
       android:text="@string/nothing" />

    </RelativeLayout> 

我想要的是在没有页眉和页脚的情况下在这张照片中创建类似的东西。

http://www.vogella.com/articles/AndroidListView/images/xinteractive10.png.pagespeed.ic.V0cVgp99SN.png

在我的布局中,复选框之前也会有另一个文本视图。还将在页脚处添加一个动态按钮。现在我不希望用户与我的列表视图进行交互。只有按钮应该是可点击的,当他们点击它时,我想运行一些计算并将它们显示在相关的“结果”文本视图中,并选中它旁边的复选框以显示我已经计算过了。这意味着我必须访问代码中的每个“结果”文本视图和“检查”复选框。

请给我一些指导来编写这个应用程序。我厌倦了通过非常复杂的代码尝试自己学习。非常感谢您的帮助。沙文卡

4