2

我正在尝试用 XML 初始化 TableLayout,然后以编程方式填充它。这是我的 XML、java 和 LogCat 输出。

高分.java

public class Highscores extends Activity {

    TableLayout table;
    TableRow rowHeader, row1, row2, row3, row4, row5, row6, row7, row8, row9, row10;
    TextView rank, percentage, score;
    Button btn1;    

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.highscoresmain);

        TableLayout table = (TableLayout)findViewById(R.id.tableLayout);

        TextView rank = (TextView)findViewById(R.id.rank);
        rank.setText("RANK");
        TextView percentage = (TextView)findViewById(R.id.percentage);
        percentage.setText("PERCENTAGE");
        TextView score = (TextView)findViewById(R.id.score);
        score.setText("SCORE");

        TableRow rowHeader = (TableRow)findViewById(R.id.rowHeader);

        rowHeader.addView(rank);  //Line 39
        rowHeader.addView(percentage);
        rowHeader.addView(score);

        Button btn1 = (Button)findViewById(R.id.homeBtn);

        table.addView(rowHeader, new TableLayout.LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT));

        btn1.setOnClickListener(new OnClickListener() {
            public void onClick(View arg0) {
                Intent intent = new Intent(Highscores.this, MainMenu.class);
                startActivity(intent);
            }
        });
    }
}

highscoresmain.xml

<TableLayout 
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:id = "@+id/tableLayout"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_weight="0"
    android:padding="5dp">

    <TableRow 
        android:layout_height="wrap_content"
        android:id="@+id/rowHeader">
        <TextView
            android:id="@+id/rank"
            android:layout_height="wrap_content" />
        <TextView
            android:id="@+id/percentage"
            android:layout_height="wrap_content" />
        <TextView
            android:id="@+id/score"
            android:layout_height="wrap_content" />
    </TableRow>
      </TableLayout>

日志猫

12-19 06:03:36.960: E/AndroidRuntime(20130): FATAL EXCEPTION: main
12-19 06:03:36.960: E/AndroidRuntime(20130): java.lang.RuntimeException: Unable to start activity ComponentInfo{com.example.test/com.example.test.Highscores}: java.lang.IllegalStateException: The specified child already has a parent. You must call removeView() on the child's parent first.
12-19 06:03:36.960: E/AndroidRuntime(20130):    at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2059)
12-19 06:03:36.960: E/AndroidRuntime(20130):    at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2084)
12-19 06:03:36.960: E/AndroidRuntime(20130):    at android.app.ActivityThread.access$600(ActivityThread.java:130)
12-19 06:03:36.960: E/AndroidRuntime(20130):    at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1195)
12-19 06:03:36.960: E/AndroidRuntime(20130):    at android.os.Handler.dispatchMessage(Handler.java:99)
12-19 06:03:36.960: E/AndroidRuntime(20130):    at android.os.Looper.loop(Looper.java:137)
12-19 06:03:36.960: E/AndroidRuntime(20130):    at android.app.ActivityThread.main(ActivityThread.java:4745)
12-19 06:03:36.960: E/AndroidRuntime(20130):    at java.lang.reflect.Method.invokeNative(Native Method)
12-19 06:03:36.960: E/AndroidRuntime(20130):    at java.lang.reflect.Method.invoke(Method.java:511)
12-19 06:03:36.960: E/AndroidRuntime(20130):    at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:786)
12-19 06:03:36.960: E/AndroidRuntime(20130):    at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:553)
12-19 06:03:36.960: E/AndroidRuntime(20130):    at dalvik.system.NativeStart.main(Native Method)
12-19 06:03:36.960: E/AndroidRuntime(20130): Caused by: java.lang.IllegalStateException: The specified child already has a parent. You must call removeView() on the child's parent first.
12-19 06:03:36.960: E/AndroidRuntime(20130):    at android.view.ViewGroup.addViewInner(ViewGroup.java:3378)
12-19 06:03:36.960: E/AndroidRuntime(20130):    at android.view.ViewGroup.addView(ViewGroup.java:3249)
12-19 06:03:36.960: E/AndroidRuntime(20130):    at android.view.ViewGroup.addView(ViewGroup.java:3194)
12-19 06:03:36.960: E/AndroidRuntime(20130):    at android.view.ViewGroup.addView(ViewGroup.java:3170)
12-19 06:03:36.960: E/AndroidRuntime(20130):    at com.example.test.Highscores.onCreate(Highscores.java:39)
12-19 06:03:36.960: E/AndroidRuntime(20130):    at android.app.Activity.performCreate(Activity.java:5008)
12-19 06:03:36.960: E/AndroidRuntime(20130):    at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1079)
12-19 06:03:36.960: E/AndroidRuntime(20130):    at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2023)
12-19 06:03:36.960: E/AndroidRuntime(20130):    ... 11 more

我想要的是一个简单的 3 列表,第 1 行的标题是“RANK”、“PERCENTAGE”和“SCORE”。稍后我将从 SQLite 数据库中提取另外 10 行,但之后我会解决这个问题。

4

3 回答 3

3

您的 xml 文件将被编辑;

我正在尝试用 XML 初始化 TableLayout,然后以编程方式填充它。这是我的 XML、java 和 LogCat 输出。

highscoresmain.xml

<TableLayout 
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:id = "@+id/tableLayout"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_weight="0"
    android:padding="5dp">


   </TableLayout>

高分课程内容;

public class Highscores extends Activity {

    TableLayout table;
    TableRow rowHeader, row1, row2, row3, row4, row5, row6, row7, row8, row9, row10;
    TextView rank, percentage, score;
    Button btn1;    

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.highscoresmain);

        TableLayout table = (TableLayout)findViewById(R.id.tableLayout);

        TextView rank = new TextView(this);
        rank.setText("RANK");
        TextView percentage = new TextView(this);
        percentage.setText("PERCENTAGE");
        TextView score = new TextView(this);
        score.setText("SCORE");

        TableRow rowHeader = new TableRow(this);

        rowHeader.addView(rank);  //Line 39
        rowHeader.addView(percentage);
        rowHeader.addView(score);

        Button btn1 = (Button)findViewById(R.id.homeBtn);

        table.addView(rowHeader);

        btn1.setOnClickListener(new OnClickListener() {
            public void onClick(View arg0) {
                Intent intent = new Intent(Highscores.this, MainMenu.class);
                startActivity(intent);
            }
        });
    }
}
于 2012-12-28T19:44:22.227 回答
1

您不需要以下代码:

TableRow rowHeader = (TableRow)findViewById(R.id.rowHeader);

rowHeader.addView(rank);  //Line 39
rowHeader.addView(percentage);
rowHeader.addView(score);

table.addView(rowHeader, new TableLayout.LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT));

因为它们已经在布局中定义了。

于 2012-12-28T19:30:19.570 回答
1

答案在你的logcat

java.lang.RuntimeException:无法启动活动 ComponentInfo{com.example.test/com.example.test.Highscores}:java.lang.IllegalStateException:指定的孩子已经有一个父母。您必须首先在孩子的父母上调用 removeView()。

TextViews 已经在 s 中,TableRow如果您想以编程方式填充它,只需删除 s 的所有子项TableLayout,在代码中创建它们,然后像​​刚才一样将它们添加到Activitys中。onCreate

祝你好运!

于 2012-12-28T19:31:32.447 回答