我的应用在LinearLayout中有一个EditText和ImageButton。
我想设置layout_height EditText,它是ImageButton。
ImageButton有src图像,set layout_height是wrap_content。
如何设置EditText的layout_height与Imagebutton的src相同?
答案 0 :(得分:1)
如果对齐是水平
,那将是解决方案<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:weightSum="10"
android:orientation="horizontal" >
<EditText
android:layout_width="0dip"
android:layout_height="match_parent"
android:layout_weight="5"/>
<ImageButton
android:layout_width="0dip"
android:layout_height="wrap_content"
android:layout_weight="5"
android:src="@drawable/mail"/>
</LinearLayout>
答案 1 :(得分:0)
我认为你要尝试做什么你应该将Linear Layout设置为layout_width和layout_height“wrap_content”然后当你将ImageView设置为wrap_content然后为editText设置layout_height为match_parent然后它将是相同的作为ImageView
我的坏我以为你说ImageView我可能是错的