我正在创建从 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);
}
}