在Tablerow内部将ImageButton对齐

时间:2019-06-21 16:08:41

标签: android android-layout android-imagebutton androiddesignsupport android-layout-editor

enter image description here

我希望我的图像按钮右对齐,但是即使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和重力。两者都不起作用

1 个答案:

答案 0 :(得分:0)

首先,您拥有graviy而不是gravity
gravity属性指定“我的孩子如何在我内部对齐”-例如TextView内的文本,Layout内的Views。 layout_gravity告诉父母“我想如何定位”。 并非所有布局都尊重孩子的layout_gravity,在这种情况下,将gravity="end"设置为TableRow即可。 您可以从gravity中删除layout_gravityImageButton