サーバーから受信したJSONに基づいて、プログラムでコントロールを作成しています。作成する必要のあるコントロールの1つはWebView
、画面の水平方向の中央に配置されるコントロールです。これは、layout_gravityオプションを使用して、以下に示すようにxmlレイアウトで簡単です。しかし、これをコードでどのように行うのか、とは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>