在 Tablerow 内对齐 ImageButton

Align ImageButton right inside Tablerow

我希望我的图像按钮右对齐,但如您所见,即使在 gravity="right" 时它也左对齐。这是我的文件:

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

<TableRow android:layout_height="20dp">


    <ImageButton
        android:id="@+id/imageButton2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="right"
        android:backgroundTint="@android:color/transparent"
        android:graviy="right"
        app:srcCompat="@drawable/ic_person_black_24dp" />
</TableRow>

</TableLayout>

如何正确对齐图像按钮?我虽然 gravity="right" 会解决问题?我尝试了 layout_gravity 和重力。两个都不工作

首先,您有 graviy 而不是 gravity
gravity 属性指定 "how are my children aligned inside of me" - 例如。 TextView 中的文本,Layout 中的视图。 layout_gravity 告诉 parent "how I want to be positioned"。 并非所有布局都尊重其 children 的 layout_gravity,在这种情况下,将 gravity="end" 设置为您的 TableRow 作品。 您可以从 ImageButton.

中删除 gravitylayout_gravity