如何在Kotlin中制作ScrollView

时间:2018-09-10 10:15:18

标签: android kotlin scrollview

我如何制作一个ScrollView在代码中向其动态添加TextViews? 现在我有:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/root_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:padding="16dp"
>
<Button
    android:id="@+id/button"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Create TextView"
    />

<ScrollView
    android:id="@+id/Scroll"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical" />
</ScrollView>

作为布局文件,这作为我的kotlin文件:

class Abfahrtsmonitor : AppCompatActivity(){
override fun onCreate(savedInstanceState: Bundle?) {
    super.onCreate(savedInstanceState)
    setContentView(R.layout.abfahrtsmonitor)

    // Variable for counting text view
    var counter: Int = 1;

    // Set a click listener for button widget
    button.setOnClickListener{
        // Create a new TextView instance programmatically
        val text_view: TextView = TextView(this)

        // Creating a LinearLayout.LayoutParams object for text view
        var params : LayoutParams = LayoutParams(
                LayoutParams.MATCH_PARENT, // This will define text         view width
                LayoutParams.WRAP_CONTENT // This will define text view     height
        )
 // Display some text on the newly created text view
        text_view.text = "Hi, i am a TextView. Number : $counter"
 // Finally, add the text view to the view group
        Scroll.addView(text_view)

        // Increment the counter
        counter++

但是现在我得到了错误:

  

java.lang.IllegalStateException:ScrollView只能容纳一个直接子对象

2 个答案:

答案 0 :(得分:2)

ScrollView本身只能容纳一个孩子,在这种情况下为您的布局。布局可以容纳多个视图,您应该将TextView添加到布局中,而不要添加ScrollView

答案 1 :(得分:0)

  

java.lang.IllegalStateException:ScrollView只能托管一个直接   孩子

ScrollView只能容纳一个孩子,这意味着它只能容纳一个直接观看的孩子,因为它是直接孩子,因此,这样的方法会有所帮助:

<ScrollView
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/root_layout"
    android:layout_width="match_parent"
    android:layout_height="wrap_content">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical">

    // Content in here ...
    </LinearLayout>
</ScrollView>

但是,情况并非如此,因为您已经在布局的根目录中有LinearLayout了,因此,您可能想考虑将ScrollView作为根目录并将内容放在LinearLayout中。 http://developer.android.com/reference/android/widget/ScrollView.html