以下是我尝试在按钮中心同时执行图标和文本的操作,但图标位于图像顶部。我希望他们处于中心位置。
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#fff"
android:layout_weight="1"
android:gravity="center"
>
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/baseline_home_24"
/>
<TextView
android:id="@+id/btnCleaner"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Cleaner"/>
</RelativeLayout>