0

在这里,我希望我的日期在我的标题旁边,在 razin 旁边,并且在 listviev 的角落,而不是在标题下方。我使用了listview的android默认布局。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="wrap_content"
    android:layout_height="fill_parent"
    android:background="@drawable/myyellow">

    <ListView android:id="@+id/android:list"
         android:layout_width="wrap_content"
         android:layout_height="wrap_content"/>

</LinearLayout>

在此处输入图像描述

编辑:我按照你的建议得到了这个,但我想在角落里约会。

图片

4

2 回答 2

2

使ListView项目顶层布局LinearLayout具有“水平”方向。然后TextViews将并排。

您也可以使用 aRelativeLayout然后轻松地将每个放置TextView在任何位置。

默认ListView布局android.R.layout.simple_list_item_2如下所示:

<TwoLineListItem xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:minHeight="?android:attr/listPreferredItemHeight"
    android:mode="twoLine"
    android:paddingBottom="9dp"
    android:paddingTop="5dp" >

    <TextView
        android:id="@android:id/text1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginLeft="10dp"
        android:textAppearance="?android:attr/textAppearanceListItem" />

    <TextView
        android:id="@android:id/text2"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignLeft="@android:id/text1"
        android:layout_below="@android:id/text1"
        android:textAppearance="?android:attr/textAppearanceSmall" />

</TwoLineListItem>

从这个开始。
要使用“水平” LinearLayout,您必须用“ ”将其更改TwoLineListItem为并添加额外的. 要使用 a您必须更改into ,添加附加,然后根据需要放置它们。LinearLayoutandroid:orientation="horizontalTextView
RelativeLayoutTwoLineListItemRelativeLayoutTextView

于 2013-03-31T06:32:21.377 回答
0

这将是组件。使用 Baseadapter 将其添加到列表中将为您提供所需的内容。您可以使用 baseadapter 中的 getview 功能添加。此链接将为您提供帮助

    <RelativeLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

    <TextView
        android:id="@+id/textView2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Title"
        android:textSize="45dp"
        android:textAppearance="?android:attr/textAppearanceLarge" />

    <TextView
        android:id="@+id/textView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentTop="true"
        android:layout_alignParentRight="true"
        android:layout_marginRight="18dp"
        android:text="Sub content"
        android:textAppearance="?android:attr/textAppearanceMedium" />

</RelativeLayout>

在此处输入图像描述

于 2013-03-31T06:57:30.507 回答