Android 控件对齐

不使用constraintlayout,
在relativelayout下就能实现控件对齐
效果图:
Android 控件对齐_第1张图片
实现:
两个控件都加上layout_centerVertical

<ImageView
        android:layout_width="45dp"
        android:layout_height="45dp"
        android:layout_centerVertical="true"
        />

    <TextView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_centerVertical="true"
        />

记录
https://blog.csdn.net/cnds123321/article/details/106863905

你可能感兴趣的:(android)