- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我是 Android 应用程序开发的新手。我正在尝试通过扫描仪将数据添加到表中,问题是当我启动扫描仪时它读取条形码但我无法将该值添加到我的表中。但是,如果我在不打开扫描仪的情况下添加数据,我的表就可以正常工作,我有以下代码,有人可以支持我。谢谢。
在设计方面,我有以下内容:
*1- TextView *2- EditText *2- 按钮 *1- TableLayout
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<TextView
android:id="@+id/scan_format"
android:hint="muestra datos del codigo"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textIsSelectable="true"
android:layout_centerHorizontal="true"
android:layout_below="@id/scan_button" />
<EditText
android:id="@+id/txtname"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:ems="10"
android:inputType="textPersonName"
android:text="DATO1" />
<EditText
android:id="@+id/txtlastname"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:ems="10"
android:inputType="textPersonName"
android:text="DATO2" />
<Button
android:id="@+id/scan_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:onClick="Escanear"
android:text="ABRIR ESCANER" />
<Button
android:id="@+id/button"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="AGREGAR DATOS A LA TABLA" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:orientation="vertical">
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent">
<HorizontalScrollView
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TableLayout
android:id="@+id/table"
android:layout_width="wrap_content"
android:layout_height="match_parent">
</TableLayout>
</HorizontalScrollView>
</ScrollView>
</LinearLayout>
在我的 Activity_main 中,我有以下代码。
import com.google.zxing.Result;
import java.util.ArrayList;
import java.util.StringTokenizer;
import me.dm7.barcodescanner.zxing.ZXingScannerView;
public class MainActivity extends AppCompatActivity {
Button scanBtn;
TextView formatTxt, contentTxt;
ZXingScannerView vistaescaner;
TableLayout tableLayout;
EditText txtName, txtLastName;
Button btn1;
String[]header={"Id","Nombre","Apellido"};
ArrayList<String[]> rows = new ArrayList<>();
TableDynamic tableDynamic;
String _a,_b;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
tableLayout=(TableLayout)findViewById(R.id.table);
txtName=(EditText)findViewById(R.id.txtname);
txtLastName=(EditText)findViewById(R.id.txtlastname);
btn1=(Button)findViewById(R.id.button);
tableDynamic = new TableDynamic(tableLayout,getApplicationContext());
tableDynamic.addHeader(header);
tableDynamic.addData(getClients());
tableDynamic.backgroundHeader(Color.BLUE);
tableDynamic.backgroundData(Color.parseColor("#58D3F7"),Color.WHITE);
tableDynamic.lineColor(Color.BLACK);
tableDynamic.textColorhHeader(Color.WHITE);
tableDynamic.textColorData(Color.parseColor("#000000"));
contentTxt = (TextView)findViewById(R.id.scan_format);
btn1.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
_a=txtName.getText().toString();
_b=txtLastName.getText().toString();
String[] item = new String[]{"2",_a,_b};
tableDynamic.addItems(item);
}
});
}
public ArrayList<String[]> getClients() {
rows.add(new String[]{"PRUEBA", "DE", "QUE LLENA"});
//rows.add(new String[]{"2","b","Lopez"});
return rows;
}
public void Escanear(View view){
vistaescaner = new ZXingScannerView(MainActivity.this);
vistaescaner.setResultHandler(new zxingscanner());
setContentView(vistaescaner);
vistaescaner.startCamera();
}
public class zxingscanner implements ZXingScannerView.ResultHandler{
@Override
public void handleResult(Result result) {
String dato = result.getText();
//setContentView(R.layout.activity_main);
vistaescaner.stopCamera();
formatTxt = (TextView)findViewById(R.id.scan_format);
formatTxt.setText(dato);
String s = dato;
StringTokenizer st = new StringTokenizer(s, ",");
dato = st.nextToken();
String[] item = new String[]{dato,"prueba","pruebaa"};
tableDynamic.addItems(item);
}
}
}
我有一个名为 Table Dynamic 的类负责填充表格。
public class TableDynamic {
private TableLayout tableLayout;
private Context context;
private String[]header;
private ArrayList<String[]>data;
private TableRow tableRow;
private TextView txtCell;
private int indexC;
private int indexR;
private boolean multicolor=false;
int firstColor, secondColor,textColor;
public TableDynamic(TableLayout tableLayout, Context context){
this.tableLayout=tableLayout;
this.context=context;
}
public void addHeader(String[]header){
this.header=header;
createHeader();
}
public void addData(ArrayList<String[]>data){
this.data=data;
createDataTable();
}
private void newRow(){
tableRow=new TableRow(context);
}
private void newCell(){
txtCell= new TextView(context);
txtCell.setGravity(Gravity.CENTER);
txtCell.setTextSize(25);
}
private void createHeader(){
indexC=0;
newRow();
while (indexC<header.length){
newCell();
txtCell.setText(header[indexC++]);
tableRow.addView(txtCell,newTableRowParams());
}
tableLayout.addView(tableRow);
}
private void createDataTable(){
String info;
for(indexR=1;indexR<=data.size();indexR++){
newRow();
for(indexC=0;indexC<header.length;indexC++){
newCell();
String[] row = data.get(indexR-1);
info=(indexC<row.length)?row[indexC]:"";
txtCell.setText(info);
tableRow.addView(txtCell,newTableRowParams());
}
tableLayout.addView(tableRow);
}
}
public void addItems(String[]Item){
String info;
data.add(Item);
indexC=0;
newRow();
while (indexC<header.length){
newCell();
info=(indexC<Item.length)?Item[indexC++]:"";
txtCell.setText(info);
tableRow.addView(txtCell,newTableRowParams());
}
tableLayout.addView(tableRow,data.size());
reColor();
}
public void backgroundHeader(int color){
indexC=0;
while (indexC<header.length){
txtCell=getCell(0,indexC++);
txtCell.setBackgroundColor(color);
}
}
public void backgroundData(int firstColor, int secondColor){
for(indexR=1;indexR<=data.size();indexR++){
multicolor=!multicolor;
for(indexC=0;indexC<header.length;indexC++){
txtCell=getCell(indexR,indexC);
txtCell.setBackgroundColor((multicolor)?firstColor:secondColor);
}
}
this.firstColor=firstColor;
this.secondColor=secondColor;
}
public void lineColor(int color){
indexR=0;
while(indexR<data.size()){
getRow(indexR++).setBackgroundColor(color);
}
}
public void textColorData(int color){
for(indexR=1;indexR<=data.size();indexR++)
for(indexC=0;indexC<header.length;indexC++)
getCell(indexR,indexC).setTextColor(color);
this.textColor=color;
}
public void textColorhHeader(int color){
indexC=0;
while(indexC<header.length){
getCell(0,indexC++).setTextColor(color);
}
}
private void reColor(){
indexC=0;
multicolor=!multicolor;
while (indexC<header.length){
txtCell=getCell(data.size(),indexC++);
txtCell.setBackgroundColor((multicolor)?firstColor:secondColor);
txtCell.setTextColor(textColor);
}
}
private TableRow getRow(int index){
return (TableRow)tableLayout.getChildAt(index);
}
private TextView getCell(int rowindex, int columindex){
tableRow=getRow(rowindex);
return (TextView) tableRow.getChildAt(columindex);
}
private TableRow.LayoutParams newTableRowParams(){
TableRow.LayoutParams params= new TableRow.LayoutParams();
params.setMargins(1,1,1,1);
params.weight=1;
return params;
}
}
在我的 Build Gradle 中,我对扫描器有以下依赖性
implementation 'me.dm7.barcodescanner:zxing:1.9.8'
最佳答案
您能否尝试在您的 MainActivity
类中添加 implements ZXingScannerView.ResultHandler
而不是在您的类内部创建一个新类,然后创建该类的属性,例如: private ZXingScannerView mScannerView;
然后当你想扫描代码时做这样的事情:
mScannerView = new ZXingScannerView(this);
mScannerView.setResultHandler(this);
setContentView(mScannerView)
mScannerView.startCamera();
当您实现 ZXingScannerView.ResultHandler
时,您必须创建此方法:
@Override
public void handleResult(Result result) {
Toast.makeText(getApplicationContext(), result.getText(), Toast.LENGTH_LONG).show();
setContentView(R.layout.activity_main);
mScannerView.stopCamera();
}
尝试此代码后,您能否验证 Toast
是否显示了正确的内容?
关于android - 如何通过 Scanner 向 TableLayout 添加数据?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52485686/
我有2000条记录,我想在tablelayout中显示产品列表。第一次加载需要显示50条记录,其余记录需要分页显示。 在 onCreate() 中我完成了表格布局:它的动态表格内容 tl = (
已编辑:我自己找到了解决方案。谢谢! 我想为 Android 应用程序创建以下屏幕: 现在我有这个: 使用此代码:
我正在尝试做我的第一个复杂的 GUI,但现在我无法解决这个问题。 前两行的第一列只需要包含标签,而前两行的第二列必须占据剩余空间。 在此快照中,我注意到的问题是第一列比我想要的要大。 这是实现该布局的
当仅添加第一行时,一切顺利,但在添加第二行后,它失败了。 pupils=db.getAllPupilsPupil(); events=db.getAllEvents(); TableLayout ta
我想制作一款类似 Jeopardy 的游戏,为了实现这一目标,我决定使用 TableLayout 布局。这就是我的代码现在的样子: import javax.swing.JButton; import
我在 ListView 中使用 TableLayout。我提供的数据本质上是表格形式的,TableLayout 似乎是确保列按需要排列的好方法。这种方法在大多数情况下都很有效 - 见下文。 所需 Vi
我想发布一张图片来描述这个问题,但显然我在 stackoverflow 方面的声誉还不够,所以我将尝试描述我想要完成的事情。 我有一个包含 5 列的 TableLayout。它们由公司名称、职位编号、
我想实现一个带分页的 TableLayout,在第 1 页显示 10 条记录,然后在第 2 页显示下 10 条记录,依此类推...我正在使用 Table Layout但我没有得到所需的结果。使用本教程
我正在构建一个吉他应用程序。屏幕右侧是指板,左侧是几个按钮。 我用一个充满按钮的表格布局构建了吉他琴颈。没什么特别的。这工作得很好。不过我也想支持平板电脑。 吉他琴颈的宽度必须与每个设备保持一致,并且
在我现有的代码中,我有三个按钮,它们在同一行上水平对齐,但是,我希望这些按钮出现在不同的行上。 现有布局... [-----] [-----] [------] 追求布局... [------] [-
我的表格布局有点问题。 我有两列 专栏 1 |第 2 列 column1 内容是静态的,表示一个属性,例如“位置”,“产品”。第二列使用适配器填充。 我的问题是 TextView 打断了 column
我的目标是从数据库中获取数据,然后在我的应用程序中将其显示为表格。 这是我的代码: public void updateLastExpenses(){ Cursor c = Expense.
我一直在尝试基于 Google Play 商店中名为 Timetable 的应用程序创建一个应用程序。在过去的几天里,我一直在努力解决一个看似简单的问题。基本上,我使用 TableLayout 创建了
我正在努力寻找一种在 TableLayout 中添加和删除可点击按钮的好方法。 所以我目前有一个包含整数和对象的 HashMap。它也随着用户的需要而更新。当用户按下“添加项目”按钮时,我希望它完成向
请参阅下面的屏幕截图,了解平板电脑和手机上的不同结果。 Activity .xml
我有一个包含三列的 TableLayout,代表一个带有 的表单 必填符号 |标签 |输入框。 我希望输入字段填充屏幕右侧标签的剩余宽度。到目前为止,我找到的唯一解决方案是这个
我有一个类,其内容设置为具有几个按钮和一个 TableLayout 的布局。 制作 TableLayout 的真正工作是在一个单独的静态助手类中,它有一个返回所需表格的方法。 但是,表格没有显示。我错
我想在线程中创建一个动态表格布局(因为我有一个巨大的表格并且加载时间很长)。它似乎一直工作到第四行,但在出现错误之后。 我找不到问题出在哪里。在此 java 代码中,已简化表布局以解决问题。 我的ja
大家早上好 我在学习 Android 的道路上还面临着另一个问题。我用 CSV 文件的内容制作了一个动态 TableLayout。我需要当我点击/触摸表格中的一行时,颜色应该改变,然后点击一个按钮获取
是否可以并排显示两个 TableLayout(在 RelativeLayout 中)以使两个表格具有相同的宽度?我只是不知道该怎么做。我已经尝试过将 android:stretchColumns="*
我是一名优秀的程序员,十分优秀!