如何在滚动文本视图下方获取按钮?

时间:2019-01-08 14:57:20

标签: android xml

<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_margin="@dimen/text_margin"
    android:text="@string/large_text3" />

<Button
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"

    android:text="How to form the genitive case"

//我想在滚动的文本视图下方找到一个按钮,但是它一直崩溃,并且不会在设计中显示,尝试时也不能在设计中创建按钮

1 个答案:

答案 0 :(得分:0)

您需要使用ViewGroup,它是在布局中组织视图的方法。

对于您来说,LinearLayout(一种ViewGroup)就足够了。

<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    >
    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_margin="@dimen/text_margin"
        android:text="@string/large_text3" />

    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="How to form the genitive case"/>
</LinearLayout>