gpt4 book ai didi

java - 如何在不使用 ids 的情况下从 View 中获取值?

转载 作者:行者123 更新时间:2023-12-01 12:43:58 24 4
gpt4 key购买 nike

我的 XML 文件中有 7 个结果 View ,我想控制它们(从它们中获取值),而不需要在每个 View 上单独声明,并且我想在每个 View 上执行一个循环(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。请注意,您的自定义 View 应该有一个 getText 方法来返回 View 的文本。

<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>

关于java - 如何在不使用 ids 的情况下从 View 中获取值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24851643/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com