gpt4 book ai didi

android - 如何制作 TextView 列表?

转载 作者:行者123 更新时间:2023-11-30 03:32:10 24 4
gpt4 key购买 nike

基本上这是我想要完成的 mspaint demonstraiton:

enter image description here

我不想让用户看到大纲,这只是为了让您了解我想做什么。每当从 GUI 底部的 edittext-button 组合中添加新目标时,我希望新的 textviews 相互占据位置。

我知道如何保存数据 - SQLite。但我不知道如何让新的 TextView 位于最后一个 TextView 的底部 - 如果屏幕上没有更多空间,我希望该 TextView 部分可以滚动。

我不知道我需要用什么来完成这个。

提前致谢!

最佳答案

创建两个 xml 文件。一个由 ListView 组成

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

<ListView
android:id="@+id/List1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:divider="#000000"
android:dividerHeight="1dp"
android:fastScrollEnabled="true"/>

</LinearLayout>

和另一个 xml 仅用于 textView 例如。行.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="match_parent"
android:orientation="horizontal"
>


<TextView
android:id="@+id/textView2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Display Name"
android:textSize="20dp"
android:layout_marginTop="20dp" />

</LinearLayout>

然后在主要 Activity 中,您需要按如下方式引用这两个 xml 文件

ListView ll = (ListView) findViewById(R.id.List1);

ArrayAdapter arrayAdapter = new ArrayAdapter(this,R.layout.row,R.id.textView2, arraylist_you_want_to_display);

ll.setAdapter(arrayAdapter);

其中R.layout.row是textView组成的row.xml

R.id.textView2 是 row.xml 中存在的 textView 的 id

关于android - 如何制作 TextView 列表?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17272615/

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