-1

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

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

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

请帮我找出这个错误的原因。我真的很困惑,我快截止日期了。这是我的主要布局 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>
4

1 回答 1

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])
于 2013-08-06T15:00:43.210 回答