在Horizo​​ntal LinearLayout中设置ImageView的高度

时间:2017-03-03 11:04:18

标签: android

我有一个带有ImageView和TextView的水平线性布局。我的文字长度各不相同。所以我希望我的ImageView与TextView具有相同的高度。谁能告诉我如何实现这个目标呢?

2 个答案:

答案 0 :(得分:1)

你可以在RelativeLayout的帮助下实现这一点,并且只需将imageview的alignTop和alignBottom属性设置为textview。

答案 1 :(得分:0)

试试这个。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="horizontal" android:layout_width="match_parent"
    android:layout_height="wrap_content">

    <LinearLayout
        android:layout_width="0dp"
        android:layout_weight="1"
        android:gravity="center"
        android:layout_height="match_parent">

        <ImageView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:src="@mipmap/ic_launcher"/>
    </LinearLayout>

    <LinearLayout
        android:layout_width="0dp"
        android:layout_weight="1"
        android:gravity="center"
        android:layout_height="match_parent">

        <TextView
            android:id="@+id/textView"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="TextViewsdfljasldfjl ;kasjdflkajslkdfasdfjlasjdfklasdklfjlkasdflkasdlkflkasdfasdfasdfasdfasdfasdf" />
    </LinearLayout>
</LinearLayout>