0
我在我的android應用程序中使用微調器下拉菜單。但是,問題在於用戶向下滾動時,旋轉工具向上移動並變得不可見。我想修復頁面頂部的微調框,以便用戶可以輕鬆選擇頁面。如何在Android的頁面頂部修復微調控件?
在滾動條這裏:
在向下滾動消失:
編輯1:佈局文件:
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:background="@color/backgroundColor"
xmlns:android="http://schemas.android.com/apk/res/android">
<LinearLayout 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:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:scrollbars="vertical"
android:paddingBottom="@dimen/activity_vertical_margin"
tools:context="com.example.shiza.dailyquranverses.Quran">
<Spinner
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/selectChapter">
</Spinner>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/verse"
android:maxLines = "2000"
android:textSize="@dimen/verse_font_chapter"
android:text="Hello from Quran"
android:scrollbars="vertical"
/>
</LinearLayout>
</ScrollView>
你可以發佈你的佈局xml嗎? –
我只是編輯我的問題,等一下.. – learner