私は Android の中間開発者であり、コンテンツ アクティビティでトリックを実行するには誰かの有効期限が必要です。
これは私のコンテンツ アクティビティです:
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent" >
....
// How this TextView never go out of the screen if the user scroll Down
<TextView ... />
....
</ScrollView>
*私がしたこと :
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<TextView ... android:visibility="gone" />
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent" >
....
//
<TextView ...android:visibility="visible"/>
....
</ScrollView>
</FrameLayout>
私は2つのTextViewを持つことを考えました.1つは上部にあり、もう1つは目に見えます。ユーザーが下にスクロールして、2 番目の TextView がなくなる前に、最初の textView を表示するように設定します。
それは良い方法ですか?もしそうなら、それを行う方法は?