列表视图与图像

时间:2012-03-04 20:36:52

标签: android listview android-layout tableview

我的问题是为我的应用程序找到在listView中有记录的最佳视图配置。

enter image description here

我的main.xml有以下内容:

<LinearLayout android:id="@+id/tabName" android:orientation="vertical"
    android:layout_width="match_parent" android:layout_height="match_parent">
    <TextView xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/textConnection" android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:gravity="center_vertical"
        android:paddingLeft="5dp"
        android:paddingRight="5dp"
        android:minHeight="20dp"
        />
    <TextView xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/textTitle" android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:gravity="center_vertical"
        android:paddingLeft="10dp"
        android:paddingRight="10dp"
        android:minHeight="40dp"
        />
    <ListView xmlns:android="http://schemas.android.com/apk/res/android" 
        android:id="@+id/listRecord" 
        android:layout_width="match_parent" android:layout_height="match_parent">
    </ListView> 
</LinearLayout>

我的ListView实际行是:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="horizontal"
    android:layout_width="match_parent"
    android:layout_height="match_parent">
    <ImageView
        android:id="@+id/imageBox"
        android:layout_width="48px"
        android:layout_marginTop="13dp"
        android:layout_height="48px">
    </ImageView>
    <TextView
        android:id="@+id/longText" android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:gravity="center_vertical"
        />
    <TextView
        android:id="@+id/num1" android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:gravity="center_vertical"
        />
    <TextView
        android:id="@+id/num2" android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:gravity="center_vertical"
        />
    <TextView
        android:id="@+id/num3" android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:gravity="center_vertical"
        />
</LinearLayout>

我尝试使用TableLayout,但启动应用程序报告了bindView中的错误。 我可以只用textView编写我的XML代码吗? 考虑一下,然后我必须添加ListView的标题,每个列上方有三个图像和数字。 感谢的。

1 个答案:

答案 0 :(得分:0)

我认为ListView确实是你最好的选择。

  

我可以只使用textView编写XML代码吗?

是的,当然。

我实际上看不出你的问题。您应该有一个活动布局,其中包含textConnectiontextTitle,然后是右边对齐的3个图像(布局文件中缺少)和列表视图。
至于行xml布局,我认为没关系!只需将它与java代码中的简单游标适配器结合使用即可。