Android 4.3在Textview中闪烁的文本行(在scrollview中)

Android 4.3在Textview中闪烁的文本行(在scrollview中),android,android-layout,textview,Android,Android Layout,Textview,我遇到了一个奇怪的问题,当文本长度超过并滚动到“匹配父高度”以上时,Android 4.3文本行从textview中消失。有人注意到这一点并找到了解决办法吗?将显示可见的底线,但当向上滚动一点时,它将消失 以下是我的布局: <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layou

我遇到了一个奇怪的问题,当文本长度超过并滚动到“匹配父高度”以上时,Android 4.3文本行从textview中消失。有人注意到这一点并找到了解决办法吗?将显示可见的底线,但当向上滚动一点时,它将消失

以下是我的布局:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/nowback"
android:id="@+id/view1"
tools:context=".MainActivity$DummySectionFragment" >

<ScrollView
    android:id="@+id/scrollView1"
    android:layout_margin="20dp"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_alignParentLeft="true"
    android:layout_alignParentRight="true"
    android:layout_alignParentBottom="true" >

<TextView
    android:id="@+id/section_tekst"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:alpha="0.9"
    android:background="#ffffff"
    android:padding="20dp"
    android:textSize="@dimen/font_size"
    android:typeface="serif"
    android:visibility="invisible" />

</ScrollView>


当文本视图中的行数增加时,它将开始闪烁。因此,请修复文本视图中的行数,或在特定时间删除行数。

问题在于文本视图中的“alpha”组件。我有同样的问题,但在包含textview的ViewContainer中,如果我将alpha设置为小于1.0,它们都会闪烁