0

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

我创建了 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);
}


}
4

1 回答 1

0

首先,我认为从它的声音来看,您可能希望使用列表视图而不是表格布局,但这并不是真正的问题。

主要问题是 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
}

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

如果您在列表视图上仍然需要更多帮助,或者这不起作用,请告诉我,我会提供帮助!

于 2012-11-12T03:34:20.817 回答