findViewById返回null,my_view.getID()不等于R.id.my_view

时间:2013-11-05 09:16:37

标签: android view unity3d r.java-file findviewbyid

我写了一个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 pulugins(facebook,google IAB..etc)的另一个统一项目上获得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

第二个项目:

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中删除自定义布局时,其他包将恢复正常

1 个答案:

答案 0 :(得分:0)

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

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

// instead of webview = this.findViewById(R.id.webview_content_port);
int webviewID = getResources().getIdentifier("webview_content_port", "id", getPackageName());
webview = (WebView)findViewById(webviewID);