我的XML文件中有7个结果视图,我想控制它们(从中获取值)而无需分别在每个视图上声明,并且我想在每个视图上进行一个循环(for循环)并将值存储在数组中,这样任何人都可以帮助我解决我遇到的问题?
在此先感谢您的帮助。
这是我的XML代码:

 <?xml version="1.0" encoding="utf-8"?>
  <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
   android:layout_width="match_parent"
    android:layout_height="match_parent"
   android:orientation="vertical" >

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content" >

    <com.example.loto.ViewLoto
        android:id="@+id/viewLoto1"
        android:layout_width="102dp"
        android:layout_weight="1"
        android:layout_height="wrap_content" >
    </com.example.loto.ViewLoto>

    <com.example.loto.ViewLoto
        android:id="@+id/viewLoto2"
        android:layout_width="102dp"
        android:layout_weight="1"
        android:layout_height="wrap_content" >
    </com.example.loto.ViewLoto>

    <com.example.loto.ViewLoto
        android:id="@+id/viewLoto3"
        android:layout_width="102dp"
        android:layout_weight="1"
        android:layout_height="wrap_content" >
    </com.example.loto.ViewLoto>

</LinearLayout>

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content" >

    <com.example.loto.ViewLoto
        android:id="@+id/viewLoto4"
        android:layout_width="102dp"
        android:layout_weight="1"
        android:layout_height="wrap_content" >
    </com.example.loto.ViewLoto>

    <com.example.loto.ViewLoto
        android:id="@+id/viewLoto5"
        android:layout_width="102dp"
        android:layout_weight="1"
        android:layout_height="wrap_content" >
    </com.example.loto.ViewLoto>

    <com.example.loto.ViewLoto
        android:id="@+id/viewLoto6"
        android:layout_width="102dp"
        android:layout_weight="1"
        android:layout_height="wrap_content" >
    </com.example.loto.ViewLoto>

</LinearLayout>

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content" >

    <com.example.loto.ViewLoto
        android:id="@+id/viewLoto7"
        android:layout_width="102dp"
        android:layout_height="wrap_content" >

    </com.example.loto.ViewLoto>

    <TextView
        android:id="@+id/txtResult"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:gravity="center"
        android:textSize="24sp"
        android:text="The result will be here!" />

</LinearLayout>

<Button
    android:id="@+id/btnDraw"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:text="Draw numbers" />

</LinearLayout>


和Java代码:

package com.example.loto;

import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.TextView;
import android.app.Activity;


public class ActivityLoto extends Activity
{
   class Layout
   {
       public Layout()
       {
           txtResult = (TextView)findViewById(R.id.txtResult);
           btnDraw = (Button)findViewById(R.id.btnDraw);
       }

       TextView txtResult;
       Button btnDraw;
   }

   int[] views = new int[7];

   class Events
   {
       public Events()
       {
            l.btnDraw.setOnClickListener(new OnClickListener()
            {

                @Override
                public void onClick(View v)
                {
                    int[] numbers = new int[7];
                    for(int i=0;i<numbers.length;i++)//I stuck here
                    {
                         int curent =i+1;
                         ViewLoto viewLoto = (ViewLoto)findViewById(R.id.viewLoto+curent);
                         numbers[i] = viewLoto.getValue();
                     }
                }
            });
       }
   }

   Layout l;
   Events e;

   @Override
   protected void onCreate(Bundle savedInstanceState)
   {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_loto);

        l = new Layout();
        e = new Events();
   }

}

最佳答案

您可以像这样遍历特定View的子级:

List<Integer> lotoValues = new ArrayList<Integer>();
ViewGroup layout = (ViewGroup) findViewById(R.id.myLayout);
for(int i=0; i<layout.getChildCount(); ++i) {
    ViewLoto nextChild = (ViewLoto) layout.getChildAt(i);
    lotoValues.add((Integer)nextChild.getText());
}


编辑:

上面的代码将循环遍历布局的子级,并将其getText结果循环到一个lotoValues数组中。请注意,您的自定义视图应具有方法getText以返回视图的文本。

<LinearLayout
    android:id="@+id/myLayout"
    android:layout_width="match_parent"
    android:layout_height="wrap_content" >

    <com.example.loto.ViewLoto
        android:layout_width="102dp"
        android:layout_weight="1"
        android:layout_height="wrap_content" />

    <com.example.loto.ViewLoto
        android:layout_width="102dp"
        android:layout_weight="1"
        android:layout_height="wrap_content" />

    <com.example.loto.ViewLoto
        android:layout_width="102dp"
        android:layout_weight="1"
        android:layout_height="wrap_content" />

</LinearLayout>

10-04 20:38