0

我写了一个 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>

这个插件可以在一个空的统一项目上很好地工作

但是 webview 在与其他 android 插件(facebook、google IAB..etc)的另一个统一项目中为空

我尝试打印视图层次结构和 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

第二个项目:

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?

** 这个问题会导致很多包出现空异常

** 当我把我的自定义布局从 res/layout 中移除时,其他包将恢复正常

4

1 回答 1

0

问题是 Unity 在构建您的应用程序时会重新生成资源 ID,但您的旧资源 ID 已经编译到您的插件中。

我在这里找到的解决方案是按名称获取您的 ID:

// instead of webview = this.findViewById(R.id.webview_content_port);
int webviewID = getResources().getIdentifier("webview_content_port", "id", getPackageName());
webview = (WebView)findViewById(webviewID);
于 2013-11-16T01:53:17.973 回答