作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在 Android 中,我试图完成这个:
基本上,能够将按钮与 EditText 并排添加,它们都占据顶行宽度的 90%。 (我不关心拥有像 Twitter 图标这样的 Logo )。
我试过使用 layout_weight 的 LinearLayout,但它们根本没有正确显示:
<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%。)
我做错了什么?提前致谢。
最佳答案
尝试使用以下内容:
<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="horizontal"
android:background = "#faadadad" >
<LinearLayout android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="0.8">
<EditText
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginLeft = "2dip"
android:layout_marginTop = "1dip"
android:layout_marginBottom = "1dip"
android:hint="Search Terms" />
</LinearLayout>
<Button android:text = "?"
android:layout_width = "0dip"
android:layout_height="wrap_content"
android:layout_weight = "0.2"/>
</LinearLayout>
所以基本上,当您使用水平 LinearLayout 时,layout_weight 水平工作,即根据 layout_weight 参数 (layout_width="0dp") 划分宽度。如果您使用的是垂直 LinearLayout,则 layout_weight 垂直工作,即高度根据 layout_weight 参数 (layout_height="0dp") 垂直划分。
希望对您有所帮助。
关于android-layout - 如何将 EditView 和 Button 并排放置占 90% 的宽度?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10462210/
我是一名优秀的程序员,十分优秀!