基本上,这是一个mspaint示范我想要完成的事情:
我不希望大纲对用户可见,只是为了让您了解我想要做什么。每当从GUI底部的edittext-button组合添加新目标时,我希望新的textview在彼此之下占据一席之地。
我知道如何保存数据 - SQLite。但是我不知道如何让新的文本视图位于最后一个的底部 - 如果屏幕上没有更多的空间,我希望textview部分可以滚动。
我不知道我需要用什么来实现这一目标。
提前致谢!
答案 0 :(得分:0)
创建两个xml文件。 一个由列表视图组成
<?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例如。 row.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>
然后在主要活动中你需要同时引用两个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.xmlR.id.textView2 是row.xml中存在的textView的id
答案 1 :(得分:0)
您可以创建一个LinearLayout,将方向设置为垂直。
添加ScrollView或ListView以显示上部,android:weight = 1
将EditText添加到LinearLayout,这样就完成了。
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<ListView
android:id="@+id/List1"
android:layout_width="fill_parent"
android:layout_height="0dp"
android:weight="1"/>
<EditText
android:layout_width="fill_parent"
android:layout_height="wrap_content"/>
</LinearLayout>