在Android中,我試圖做到這一點: 如何把EditView和Button並排佔據90%的寬度?
基本上,按鈕並排着一個EditText,他們都接受了90%的頂行的寬度增加的能力。 (我不關心像twitter圖標那樣的標誌)。
我試過的LinearLayout與layout_weight,但他們並沒有出現在正確的所有:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:weightSum = "1.0"
android:orientation="vertical"
android:background = "#faadadad" >
<EditText
android:layout_width="0dip"
android:layout_height="0dip"
android:layout_weight = "0.8"
android:layout_marginLeft = "2dip"
android:layout_marginTop = "1dip"
android:layout_marginBottom = "1dip"
android:hint="Search Terms" />
<Button android:text = "?"
android:layout_width = "0dip"
android:layout_height="2dip" android:layout_weight = "0.2"/>
</LinearLayout>
,任何事情我在RelativeLayout的嘗試只是不看的權利(我嘗試設置2之間的空白元素爲0dips,沒有運氣,我也無法獲得90%的寬度要求。)
我在做什麼錯?提前致謝。
可能dublicate的http://stackoverflow.com/questions/2950885/combining-edittext-and-button – superM