I wanna put my logo to my app and layout_gravity doesn't work, neither found in Android Studio why? maybe there is another option for this, maybe by version i don't know, below I share the code in XMl.
<ImageView
android:layout_gravity="center"
android:layout_width="140dp"
android:layout_height="140dp"
android:src="@drawable/logo" />
if you using parent layout
<RelativeLayout>and tryandroid:centerInParent="true"orandroid:layout_centerVertical="true"(center vertical) ,android:layout_centerHorizontal="true"(center horizontal) in<ImageView>and if you use parent layout<LinearLayout>tryandroid:layout_gravity="center"