我对android开发和android studio非常陌生;我将尽力表达我的问题。如果我在提及某些事物时使用了错误的术语,请在回答时告知我。
我要做什么?
我想从字符串数组创建项目列表,这些字符串的值已存储在arrays.xml中。我希望用户通过选中每个字符串旁边的框来选择要使用的字符串。另外,我想在数组的最后一项之后添加以下内容:
[+] _Add_your_own_item __
(用户将编写一个String并按下[+]按钮,这会将一个新项目添加到上面的列表中,并带有一个框来打勾)。
我希望此Button +纯文本位于包含列表的ListView内,好像此Button +文本是列表中的最后一项。
到目前为止我能做些什么?:
我设法为数组的所有元素创建了复选框的动态列表:
protected void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_display_characters);
listView = (ListView)findViewById(R.id.listView);
listView.setChoiceMode(ListView.CHOICE_MODE_MULTIPLE);
characters = getResources().getStringArray(R.array.characters);
ArrayAdapter<String> arrayAdapter = new ArrayAdapter<String>(this, android.R.layout.simple_list_item_multiple_choice, characters);
listView.setAdapter(arrayAdapter);
for(int i = 0; i < characters.length; ++i)
{
listView.setItemChecked(i, false);
}
}
我已经尝试创建Button +纯文本来直接为我的活动修改.xml文件,但是它只是将它们放置在ListViex之外。
从我非常有限的理解,我的ArrayAdapter将每个字符串变成一个“复选框”视图,并将它们一个放置在ListView中的另一个下面。如何为Button + Text做同样的事情?我只需要按正确的方向进行操作,然后我就可以尝试找出将新字符串添加到复选框列表中的逻辑。
到目前为止,我的布局是这样的:(其中的那个Button告诉我选择了哪些字符串)
<TextView
android:id="@+id/textView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="16dp"
android:layout_marginLeft="16dp"
android:layout_marginTop="16dp"
android:layout_marginEnd="16dp"
android:layout_marginRight="16dp"
android:text="@string/characters"
android:textSize="24sp"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<Button
android:id="@+id/button4"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="16dp"
android:layout_marginLeft="16dp"
android:layout_marginEnd="16dp"
android:layout_marginRight="16dp"
android:layout_marginBottom="16dp"
android:onClick="getSelectedSuspects"
android:text="@string/continue_text"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent" />
<LinearLayout
android:id="@+id/checksContainer"
android:layout_width="0dp"
android:layout_height="0dp"
android:layout_marginStart="16dp"
android:layout_marginLeft="16dp"
android:layout_marginTop="16dp"
android:layout_marginEnd="16dp"
android:layout_marginRight="16dp"
android:layout_marginBottom="16dp"
android:orientation="vertical"
app:layout_constraintBottom_toTopOf="@+id/button4"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/textView">
<ListView
android:id="@+id/listView"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</LinearLayout>
答案 0 :(得分:0)
使用ListView的最简单方法是设置页脚视图。页脚视图位于列表内部并随其滚动,但不算作列表的元素。使用listView.addFooterView(view)
添加它。该视图通常是通过LayoutInflater从xml扩展的。
答案 1 :(得分:0)
如果有人在几个小时前就在我的位置上:我会根据我从@Game的答案中了解的内容添加一个对新手更友好的回答。
我创建了一个新的布局,它将自己插入为ListView底部的另一个ViewGroup。对于我的问题中的示例,应为:
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".DisplayCharactersActivity">
<EditText
android:id="@+id/editText2"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:ems="10"
android:hint="Add a suspect"
android:inputType="textPersonName"
android:text=""
app:layout_constraintEnd_toStartOf="@+id/button5"
app:layout_constraintHorizontal_bias="0.5"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<Button
android:id="@+id/button5"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="16dp"
android:layout_marginLeft="16dp"
android:text="+"
app:layout_constraintBaseline_toBaselineOf="@+id/editText2"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.5"
app:layout_constraintStart_toEndOf="@+id/editText2" />
</android.support.constraint.ConstraintLayout>
然后,在活动的OnCreate()方法中添加:
LayoutInflater layoutInflater = getLayoutInflater();
ViewGroup footer = (ViewGroup)layoutInflater.inflate(R.layout.footer_button_text, listView, false);
listView.addFooterView(footer);
我不了解此行后面的所有详细信息,但是它“附加”了这个ViewGroup在ListView的底部;如果有人想更详细地说明这一点,请随时进行编辑。