Я пытаюсь создать приложение для Android.Это приложение имеет только один экран.На этом экране необходимо прокрутить вниз.
Теперь у меня есть этот код:
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/scroll"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >
<EditText
android:id="@+id/name1"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<ImageButton
android:id="@+id/calculate"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/button" />
<FrameLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal|center_vertical" >
<ImageView
android:id="@+id/image"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/image" />
<CheckedTextView
android:id="@+id/score"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</FrameLayout>
<CheckedTextView
android:id="@+id/quote"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</LinearLayout>
</ScrollView>
Но когда CheckedTextField содержит много текста, и мне нужно прокрутить, появляется прокрутка, но верхняя часть моего окна исчезла.Поэтому я больше не вижу первый EditText 'name1'.Я не могу вернуть его, прокручивая также ...
Кто-нибудь, кто может дать мне решение?
Заранее спасибо!