我正在制作一个Android应用程序。我的FrameLayout
包含ImageView
和TextView
,如下所示:
<FrameLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="0.5384615384615385"
android:scaleType="fitXY"
android:adjustViewBounds="true">
<ImageView
android:id="@+id/imageView9"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:clickable="false"
android:scaleType="fitXY"
android:contentDescription="@string/p"
/>
<TextView
android:id="@+id/tv1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:typeface="sans"
android:scrollbars = "vertical"
android:maxLines="100000"
android:layout_gravity="center_vertical"
android:textSize="17sp"
/>
</FrameLayout>
如您所见,TextView
是可滚动的。当我滚动浏览模拟器上的TextView
时,文本消失,ImageView
出现在前面。但是当我停止滚动时,文本再次可见,并滚动到我想要滚动到的位置。那么如何锁定TextView
,以便它始终位于ImageView
之上?我是android新手,对不起,如果这是一个基本问题。