如何在循环中使用ViewGroup引用?

时间:2015-04-07 11:39:22

标签: java android android-layout android-linearlayout

我的主要活动布局有以下代码:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="${relativePackage}.${activityClass}" >

<LinearLayout
    android:layout_width="match_parent"
    android:layout_weight="1"
    android:orientation="horizontal" >

    <Button
        android:id="@+id/R0C0"
        android:layout_height="match_parent"
        android:layout_weight="1" />

    <Button
        android:id="@+id/R0C1"
        android:layout_height="match_parent"
        android:layout_weight="1" />

    <Button
        android:id="@+id/R0C2"
        android:layout_height="match_parent"
        android:layout_weight="1" />
</LinearLayout>

<LinearLayout
    android:layout_width="match_parent"
    android:layout_weight="1"
    android:orientation="horizontal" >

    <Button
        android:id="@+id/R1C0"
        android:layout_height="match_parent"
        android:layout_weight="1" />

    <Button
        android:id="@+id/R1C1"
        android:layout_height="match_parent"
        android:layout_weight="1" />

    <Button
        android:id="@+id/R1C2"
        android:layout_height="match_parent"
        android:layout_weight="1" />
</LinearLayout>

<LinearLayout
    android:layout_width="match_parent"
    android:layout_weight="1"
    android:orientation="horizontal" >

    <Button
        android:id="@+id/R2C0"
        android:layout_height="match_parent"
        android:layout_weight="1" />

    <Button
        android:id="@+id/R2C1"
        android:layout_height="match_parent"
        android:layout_weight="1" />

    <Button
        android:id="@+id/R2C2"
        android:layout_height="match_parent"
        android:layout_weight="1" />
</LinearLayout>

tic-tac-toe网格有9个按钮,每个按钮都有一个唯一的名称。我的mainActivity类是:

import android.app.Activity;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;
import android.widget.Button;

public class MainActivity extends Activity {
    Button g[][] = new Button[3][3];

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        g[0][0]=(Button)findViewById(R.id.R0C0);
        g[0][1]=(Button)findViewById(R.id.R0C1);
        g[0][2]=(Button)findViewById(R.id.R0C2);
        g[1][0]=(Button)findViewById(R.id.R1C0);
        g[1][1]=(Button)findViewById(R.id.R1C1);
        g[1][2]=(Button)findViewById(R.id.R1C2);
        g[2][0]=(Button)findViewById(R.id.R2C0);
        g[2][1]=(Button)findViewById(R.id.R2C1);
        g[2][2]=(Button)findViewById(R.id.R2C2);

    }
}
  1. 我不想单独初始化每个按钮,而是使用嵌套for循环来实现3x3数组。(这是我要概括任何大小网格的代码)我该怎么做?
  2. 在LinearLayout中,eclipse警告我使用嵌套权重在性能上是不好的。有什么替代方案?

2 个答案:

答案 0 :(得分:0)

我建议你像下面那样编辑你的xml:

 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"  
android:gravity="center">

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

    <Button
        android:id="@+id/R0C0"
        android:layout_height="100dp"
        android:layout_weight="1" 
        android:layout_width="0dp"/>

    <Button
        android:id="@+id/R0C1"
        android:layout_height="100dp"
        android:layout_weight="1"
        android:layout_width="0dp" />

    <Button
        android:id="@+id/R0C2"
        android:layout_height="100dp"
        android:layout_weight="1"
        android:layout_width="0dp"/>
</LinearLayout>

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

    <Button
        android:id="@+id/R0C3"
        android:layout_height="100dp"
        android:layout_weight="1"
        android:layout_width="0dp"/>

    <Button
        android:id="@+id/R0C4"
        android:layout_height="100dp"
        android:layout_weight="1"
        android:layout_width="0dp" />

    <Button
        android:id="@+id/R0C5"
        android:layout_height="100dp"
        android:layout_weight="1"
        android:layout_width="0dp"/>
</LinearLayout>

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

    <Button
        android:id="@+id/R0C6"
        android:layout_height="100dp"
        android:layout_weight="1"
        android:layout_width="0dp"/>

    <Button
        android:id="@+id/R0C7"
        android:layout_height="100dp"
        android:layout_weight="1"
        android:layout_width="0dp" />

    <Button
        android:id="@+id/R0C8"
        android:layout_height="100dp"
        android:layout_weight="1"
        android:layout_width="0dp"/>
</LinearLayout>
</LinearLayout>

您可以根据布局更改按钮高度...例如。 layout-large,layout-small,layout-xlarge等..

答案 1 :(得分:0)

关于第一个问题,你可以这样做:

int[][] ids = new int[][]{
              {R.id.R0C0, R.id.R0C1, R.id.R0C2},
              {R.id.R1C0, R.id.R1C1, R.id.R1C2},
              {R.id.R2C0, R.id.R2C1, R.id.R2C2}};

 for (int i = 0; i < 3; i++)
     for (int j = 0; j < 3; j++)
         g[i][j] = (Button) findViewById(ids[i][j]);