Unity android プラグインを作成し、次のコードを用意します。
setContentView(R.layout.activity_main_portrait);
webview = (WebView)this.findViewById(R.id.webview_content_port);
activity_main_portrait.xml
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
tools:context=".UJMPPActivity" >
<RelativeLayout
android:id="@+id/relativeLayout1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentRight="true"
android:layout_alignParentTop="true"
android:background="@drawable/ujmpp_bg_activity_top" >
<ImageButton
android:id="@+id/imageButton_back_port"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_alignParentTop="true"
android:background="@drawable/ujmpp_bg_activity_top"
android:paddingRight="5dp"
android:src="@drawable/ujmpp_btn_back" />
<ImageView
android:id="@+id/imageView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_centerVertical="true"
android:paddingLeft="5dp"
android:src="@drawable/ujmpp_logo" />
</RelativeLayout>
<LinearLayout
android:id="@+id/linearLayout1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
android:layout_below="@+id/relativeLayout1"
android:background="@drawable/ujmpp_bg_activity_left"
android:orientation="vertical" >
<ImageButton
android:id="@+id/imageButton_home_port"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:background="@drawable/ujmpp_bg_activity_left"
android:src="@drawable/ujmpp_activity_bottom_icon01" />
<ImageButton
android:id="@+id/imageButton_return_port"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:background="@drawable/ujmpp_bg_activity_left"
android:src="@drawable/ujmpp_activity_bottom_icon02" />
<ImageButton
android:id="@+id/imageButton_refresh_port"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:background="@drawable/ujmpp_bg_activity_left"
android:src="@drawable/ujmpp_activity_bottom_icon03" />
<ImageButton
android:id="@+id/imageButton_facebook_port"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:background="@drawable/ujmpp_bg_activity_left"
android:src="@drawable/ujmpp_activity_bottom_icon04" />
</LinearLayout>
<WebView
android:id="@+id/webview_content_port"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_alignTop="@+id/linearLayout1"
android:layout_toRightOf="@+id/linearLayout1" />
</RelativeLayout>
このプラグインは、空の Unity プロジェクトでうまく機能します
しかし、webview は、他の Android プラグイン (facebook、google IAB など) を使用した別のユニティ プロジェクトで null を取得します。
ビュー階層と R.id.* を出力してみます。
最初のプロジェクト (空):
Display R.id / webview_content_port, 2131165200
.../.../ Child at 2 = android.webkit.WebView{419a8d58 VFEDHVCL ......I. 0,0-0,0 #7f070010 app:id/webview_content_port}, id=2131165200
2 番目のプロジェクト:
Display R.id / webview_content_port, 2131165200
.../.../ Child at 2 = android.webkit.WebView{419ab618 VFEDHVCL ......I. 0,0-0,0 #7f040013 app:id/webview_content_port}, id=2130968595
ビュー ID が変更された理由 そしてそれを修正する方法は?またはfindViewByIdを使用するようなビューを取得する他の方法は?
** この問題により、多くのパッケージで null 例外が発生します
** res/layout からカスタム レイアウトを配置すると、他のパッケージは通常の状態に戻ります