gpt4 book ai didi

android - 如何将线性布局膨胀成一行?

转载 作者:行者123 更新时间:2023-11-30 04:36:28 25 4
gpt4 key购买 nike

我正在尝试从数据库中填充项目列表。我想将 linearLayout 膨胀为行而不是常规行以显示 imageView。

这是我的 row.xml linearLayout 的 XML。

  ?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:padding="4dip">
<ImageView
android:id="@+id/icon"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_alignParentTop = "true"
android:layout_alignParentBottom = "true"
android:layout_marginRight="4dip"
/>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
>

<TextView
android:textColor="#15317E"
android:id="@+id/title"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:gravity="center_vertical"
android:textStyle="bold"
android:maxLines="1"
android:textSize="21dip"
android:ellipsize="end"
/>




</LinearLayout>
</LinearLayout>

现在我在这里使用 SimpleCursorAdapter 来显示 list.xml 中的布局

public void fillData(){
helper.open();
Cursor task = helper.fetchAllTask();
startManagingCursor(task);

String[] from = new String[]{TaskHelper.KEY_TITLE};
int[] to = new int[]{R.layout.row};

SimpleCursorAdapter taskAdapter = new SimpleCursorAdapter(this, R.layout.list, task, from , to);
setListAdapter(taskAdapter);

}

我不确定我这样做是否正确,如果有人对此很熟悉。请告诉我。谢谢

在我的 fillData() 中,我也想在其中显示 imageView 作为图标。但由于某种原因,每次我添加一个项目时它都不会填充。也许这是我重建整个列表的更好方法。

最佳答案

尝试:

String[] from = new String[]{TaskHelper.KEY_TITLE};
int[] to = new int[]{R.id.title};
SimpleCursorAdapter taskAdapter = new SimpleCursorAdapter(this, R.layout.row,
task, from , to);

关于android - 如何将线性布局膨胀成一行?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6749850/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com