我有一個按鈕在ScrollView
以下,該按鈕被設置爲與父母底部對齊。滾動視圖的高度設置爲wrap_content
。一旦ScrollView
充滿內容,它就會出現在按鈕下方。我怎樣才能將它設置爲不在按鈕後面,ScrollView
在按鈕開始時結束?初學Android開發者 - 遇到佈局困難
我試過把android:layout_below
放在最下面的按鈕,當沒有工作的時候,我試着layout_above
在ScrollView
的按鈕上面。最後一個導致我的應用程序在開始時崩潰,不知道爲什麼。第一個是ScrollView
比屏幕長,導致按鈕被放置在下面,無法訪問它。
這是我的XML文件。
<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="@color/light_blue"
android:padding="5dp"
tools:context=".MainActivity" >
<EditText
android:id="@+id/editText_query"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="@string/queryPromt"
android:imeOptions="actionNext"
android:inputType="text"
android:textColor="#000" />
<EditText
android:id="@+id/editText_tag"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/editText_query"
android:layout_marginTop="10dp"
android:layout_toLeftOf="@+id/saveButton"
android:hint="@string/tagPrompt"
android:imeOptions="actionDone"
android:inputType="text" />
<Button
android:id="@id/saveButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_below="@id/editText_query"
android:text="@string/save" />
<TextView
android:id="@+id/textView_taggedSearches"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignRight="@id/saveButton"
android:layout_below="@id/saveButton"
android:layout_marginTop="10dp"
android:background="#666"
android:gravity="center_horizontal"
android:text="@string/taggedSearches"
android:textColor="#FFF"
android:textSize="18sp" />
<ScrollView
android:id="@+id/scrollView_query"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/textView_taggedSearches"
android:padding="5dp" >
<TableLayout
android:id="@+id/tableLayout_query"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="5dp"
android:stretchColumns="*" >
</TableLayout>
</ScrollView>
<Button
android:id="@+id/button_clearTags"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"
android:text="@string/clearTags" />
</RelativeLayout>
謝謝。這基本上是上面提到的,並且它工作。 – Emrys90