I want to make an about button in the top left. I tried:
android:layout_gravity:"top|left"
but it doesn’t work , I searched and all what I found was using RelativeLayout and if I use that I’ll have to make all my layout from beginning and it’s not that good like the linear layout.
Couldn’t post the code here. So this is my code on pastebin
Here you have given
android:layout_gravity="center"to the Linear Layout so it is going to set gravity of the layout and ascenterand yourAbout Buttonis child of layout its to going to set incenterand you have givenMargin_topalso.Try to remove gravity amd Margin_top and you can see the result, the button will be top|left of the screen.