findViewById为现有包含的布局返回null

时间:2013-08-06 13:25:42

标签: android layout view

在我的主要布局中(在创建时设置)我有一些包含imageview的布局。在我的代码中,我需要将位图设置为这些imageViews。我的方法是:

(ImageView) ((findViewById(R.id.first_app + (i - 1)).findViewById(R.id.app_image)));

我是循环变量。 问题是我为findViewById(R.id.first_app +(i - 1)得到null,但这些布局存在于主布局中。

请帮我找出这个错误的原因。我真的很困惑,我已接近截止日期。 这是我的主要布局xml:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    android:weightSum="3"
    tools:context=".MoreAppsActivity" >

    <RelativeLayout
        android:id="@+id/more_app_title"
        android:layout_width="match_parent"
        android:layout_height="60dp"
        android:gravity="center" 
        android:background="#EA7026">

        <ImageView
            android:id="@+id/more_app_title_img"
            android:layout_width="40dp"
            android:layout_height="40dp"
            android:background="@android:color/transparent" 
            android:src="@drawable/more_app_title_image"/>
    </RelativeLayout>

    <include
        android:id="@+id/first_app"
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="1"
        layout="@layout/single_app_layout" />

    <include
        android:id="@+id/second_app"
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="1"
        layout="@layout/single_app_layout" />

    <include
        android:id="@+id/third_app"
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="1"
        layout="@layout/single_app_layout" />

    <RelativeLayout
        android:id="@+id/more_app_subtitle"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:minHeight="60dp"
        android:gravity="center" 
        android:background="#DBBE00">

        <ImageButton
            android:id="@+id/more_app_button"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:background="@android:color/transparent" 
            android:src="@drawable/more_app_threecircle"/>
        <TextView 
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:textColor="@android:color/black"
            android:layout_below="@id/more_app_button"
            android:layout_marginTop="5dp"
            android:text="?????? ??? ?????"/>
    </RelativeLayout>

</LinearLayout>

并包含布局:

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    >

    <ImageView 
        android:id="@+id/app_image"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:scaleType="fitXY"/>

    <LinearLayout 
        android:id="@+id/app_text_container"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical"
        android:gravity="center_horizontal"
        android:weightSum="100">

        <TextView 
            android:id="@+id/app_text"
            android:layout_width="match_parent"
            android:layout_height="0dp"
            android:layout_weight="30"
            android:background="#88000000"
            android:text="aligholi salavat"
            android:textSize="22sp"
            android:gravity="center"
            android:textColor="@android:color/white"/>
    </LinearLayout>

</FrameLayout>

1 个答案:

答案 0 :(得分:1)

问题是

findViewById(R.id.first_app + (i - 1))

基本上,R.id.first_app是对R文件中int的引用,你不能为它添加数字,因为它最终会等同于对其他东西的引用。编译时,他们有可能改变顺序或价值。

编辑:你可以创建一个R.id.first_app,R.id.second_app和R.id.third_app的int数组。这样,布局指针保持不变。

int[] layouts = {R.id.first_app, R.id.second_app, R.id.third_app};

然后在循环中

findViewById(layouts[i])