表包含多行,每行有textview和button共享,如何识别每一行组件?

时间:2012-11-12 00:55:17

标签: android

我正在创建从db获取文本的android应用程序,并将它们显示为表格 其中行数取决于该数据库上的文本数 每个文本将显示在行上,旁边的共享按钮

我创建了2个布局,1个用于我的表,另一个用于每行 现在我用函数addtablerow填充每一行 但是如何确定每个按钮的确切行?

因为只有最后一个按钮效果很好而其他按钮没有动作? 我想创建按钮数组,但总是在创建时崩溃!

有关详细信息,请参阅我的代码

activity_main.xml中

<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent" >

android:layout_height="wrap_content"
android:layout_width="fill_parent" >
<TableLayout
    android:id="@+id/my_table"
    android:layout_height="fill_parent"
    android:layout_width="fill_parent"
    android:stretchColumns="1"
    android:shrinkColumns="1"/>
</ScrollView>

table_row_item.xml

<?xml version="1.0" encoding="UTF-8"?>
<TableRow xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="?android:attr/listPreferredItemHeight"
android:focusable="true"
android:focusableInTouchMode="false"
android:clickable="true"
android:background="@android:drawable/list_selector_background">

<TextView
    android:id="@+id/cell"

/>
 <Button
    android:id="@+id/button1"
    android:layout_width="7dp"
    android:layout_height="77dp"
    android:text="Button" />
</TableRow>

MainActivity.java

package com.example.tabletest.test;
import android.os.Bundle;
import android.app.Activity;
import android.content.Intent;
import android.view.Menu;
import android.view.View;
import android.widget.Button;
import android.widget.TableLayout;
import android.widget.TableRow;
import android.widget.TextView;

public class MainActivity extends Activity {
public int i;
public Button btn;
public TextView tv;


@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    i=1; //just for test , but later i will get position of data on db
    addTableRow();
    i=2;
    addTableRow();

    btn.setOnClickListener(new View.OnClickListener() {

        @Override
        public void onClick(View v) {
            int j=btn.getId();
            Intent sharingIntent = new Intent(
                    android.content.Intent.ACTION_SEND);
            sharingIntent.setType("text/plain");
            String shareBody = "this is"+j;
            sharingIntent
                    .putExtra(android.content.Intent.EXTRA_TEXT,     shareBody);
            startActivity(Intent.createChooser(sharingIntent, "Share via: "));
        }

    });
}

@Override
public boolean onCreateOptionsMenu(Menu menu) {
    getMenuInflater().inflate(R.menu.activity_main, menu);
    return true;
}
private void addTableRow() {
    final TableLayout table = (TableLayout) findViewById(R.id.my_table);
    final TableRow tr = (TableRow) getLayoutInflater().inflate(R.layout.table_row_item, null);

    // fill cell txt
    tv = (TextView) tr.findViewById(R.id.cell);
    tv.setText("This is row"+i);
    table.addView(tr);

    btn=(Button) tr.findViewById(R.id.button1);
    btn.setId(i);


    registerForContextMenu(tr);
}


}

1 个答案:

答案 0 :(得分:0)

首先,我想通过它的声音,你可能想要使用tablelayout的listview intead,但这不是真正的问题。

主要问题是btn和tv不应该是活动的全球成员。最后一个按钮工作的原因是因为您重新初始化按钮btn等于新按钮。因此,最后一个是唯一真正起作用的。我的建议是你创建这样的本地实例变量:

private void addTableRow() {
final TableLayout table = (TableLayout) findViewById(R.id.my_table);
final TableRow tr = (TableRow) getLayoutInflater().inflate(R.layout.table_row_item, null);

// fill cell txt
TextView tv = (TextView) tr.findViewById(R.id.cell);
tv.setText("This is row"+i);
table.addView(tr);

Button btn=(Button) tr.findViewById(R.id.button1);
btn.setId(i);


registerForContextMenu(tr);

}

然后,为了跟踪每行中的内容,我会创建一个类来保存您的数据。这是一个例子:

public class myRow{
    String text;
    int id;
    //any other data you want to track
}

然后,在您的活动中,创建这些对象的arraylist(来自您的数据库)。当有人点击数组列表中的某个项时,您只需检索该列表中的该元素,然后根据该元素执行操作。

如果您仍然需要更多关于列表视图的帮助,或者这不起作用,请告诉我,我会帮忙!