我在顯示搜索框旁邊的按鈕時遇到問題。我正在使用自動完成的文本視圖,我不知道這是否歸因於自動完成的文本視圖。我怎樣才能解決這個問題。這是我到目前爲止:看不到搜索框旁邊的按鈕android
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
>
<AutoCompleteTextView
android:id="@+id/autocomplete"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:inputType="text"
/>
<Button
android:id="@+id/search_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Go"
/>
</LinearLayout>
so android:layout_weight = 1用於使「慷慨」的意見與其他意見分享他們的空間? – madcoderz 2011-01-27 15:10:23
是的。體重值可以是0到1之間的任何值,默認值(如果沒有明確設置,則獲得的值)爲0.如果您給予2視圖相等的權重,他們將嘗試在它們之間平均分配空間。 – Jems 2011-01-27 15:13:06