TextView上下移出屏幕

时间:2015-07-16 08:35:56

标签: textview

因此,我创建了自定义对话框,该对话框应在按下所需按钮后显示。但是,当文本太长时,textView会退出屏幕。我试图找到一个解决方案,但不成功。 伙计们,我希望你能帮助我。谢谢。 以下是对话框的xml代码:

git diff

谢谢:)

对话类:

<?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="wrap_content"
    android:orientation="vertical"
    android:layout_gravity="center"
    android:layout_marginTop="20dp"
    android:layout_marginLeft="20dp"
    android:layout_marginRight="20dp">
    <ScrollView
        android:layout_width="match_parent"
        android:layout_height="wrap_content">
        <TextView
            android:id="@+id/txt_dia"
            android:layout_height="match_parent"
            android:layout_width="match_parent"
            android:textSize="16sp"
            android:layout_gravity="center"
            android:textColor="@color/black"/>
    </ScrollView>
    <Button
        android:id="@+id/btn_back"
        android:layout_height="40dp"
        android:layout_width="100dp"
        android:clickable="true"
        android:text="@string/bck"
        android:textStyle="bold"
        android:layout_gravity="left"/>
</LinearLayout>

}

0 个答案:

没有答案