我正在基于从服务器接收到的 JSON 以编程方式创建我的控件。我需要创建的控件之一WebView
是在屏幕上水平居中的控件。这在 xml 布局中很简单,如下所示,使用 layout_gravity 选项。但是你如何在代码中做到这一点,就像没有方法WebView
一样。TextView
setGravity(Gravity.HORIZONTAL_GRAVITY_MASK)
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<WebView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"/>
</LinearLayout>