2012-12-28 28 views
2

我想初始化XML中的TableLayout,然后以编程方式填充它。这是我的XML,Java和LogCat输出。在XML中初始化TableLayout并以编程方式填充它 - Android(java)

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

logcat的

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页的标题是 “等级”, “PERCENTAGE”和“SCORE”。后来我会从SQLite数据库中取出10多行,但我会在之后解决这个问题。

回答

2

您的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); 
      } 
     }); 
    } 
} 
+0

当我调用TableLayout的addview它会例外。为什么? – ofskyMohsen

+0

您是否添加了哪个视图以及如何操作? – nurisezgin

+0

我想添加包含两个文本视图的表格行 – ofskyMohsen

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

由于他们是在布局中已定义。

1

答案就在你的logcat

了java.lang.RuntimeException:无法启动活动 ComponentInfo {com.example.test/com.example.test.Highscores}: 的java.lang。 IllegalStateException:指定的子项已具有 父级。您必须先调用子对象的父对象的removeView()。

TextView s为已经TableRow里面,如果你想以编程方式填充它,只是删除您TableLayout的所有孩子,在代码中创建它们,并添加他们ActivityonCreate,你只是做。

祝你好运!

相关问题