Is there any difference between "center_horizontal|center_vertical" and "center"
android, android-layout, java, layout, xml
Solution
No, there is no difference. According to source code
public static final int CENTER = CENTER_VERTICAL|CENTER_HORIZONTAL;
Problem
I want to center an image in a linearLayout. Is there any difference between ``` android:gravity="center_horizontal|center_vertical" ``` and ``` android:gravity="center" ``` ?