- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想实现以下结果,即一个 ImageView 介于两者之间并与 2 个按钮重叠,但经过几天的尝试和搜索后我没有运气。
如果您能提供帮助,非常感谢。
<LinearLayout
android:id="@+id/fragment_busmain_triplacegroup"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/fragment_busmain_tripbtngroup"
android:layout_centerHorizontal="true"
android:orientation="vertical"
android:padding="10dp"
android:weightSum="2">
<android.support.design.widget.TextInputLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1">
<EditText
android:id="@+id/fragment_busmain_departfrom"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:hint="@string/From"></EditText>
</android.support.design.widget.TextInputLayout>
<android.support.design.widget.TextInputLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1">
<EditText
android:id="@+id/fragment_busmain_departto"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:hint="@string/To"></EditText>
</android.support.design.widget.TextInputLayout>
</LinearLayout>
最佳答案
尝试使用 RelativeLayout
并将 ImageView 添加到第一个 TextView 下方,并为其高度的一半设置负边距。
<RelativeLayout
android:id="@+id/fragment_busmain_triplacegroup"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/fragment_busmain_tripbtngroup"
android:padding="10dp">
<android.support.design.widget.TextInputLayout
android:id="@id/from"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<EditText
android:id="@+id/fragment_busmain_departfrom"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:hint="@string/From"/>
</android.support.design.widget.TextInputLayout>
<ImageView
android:layout_width="30dp"
android:layout_height="30dp"
android:layout_below="@id/from"
android:src="@drawable/upDownArrow"
android:layout_marginBottom="-15dp"/>
<android.support.design.widget.TextInputLayout
android:id="@id/to"
android:layout_below="@id/from"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<EditText
android:id="@+id/fragment_busmain_departto"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:hint="@string/To"></EditText>
</android.support.design.widget.TextInputLayout>
</RelativeLayout>
关于android - 如何让ImageView与2个Button部分重叠?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42347654/
我遇到过这个 html: 上面的html和这个有什么区别: 最佳答案 来自MDN page on the tag : 对于 type 的属性标签,可能的值是: 提交:按钮将表单数据提交给服务器
Button button= (Button) findViewbyID(R.id.button); 和 Button button = new Button(this); 有什么区别? 最佳答案 有
我是一名优秀的程序员,十分优秀!