У меня есть RelativeLayout, и внутри него есть WebView.После увеличения и уменьшения моего WebView не в центре.Когда я включаю другое представление в свой RelativeLayout, я не могу разместить WebView в центре.Может кто-нибудь, пожалуйста, предложить что-нибудь ??любая помощь приветствуется
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/fullscreen_image_parrent"
android:orientation="vertical"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@color/black">
<WebView
android:id="@+id/webview"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true">
</WebView>
<include layout="@layout/full_image_controls"/>