use of android.widget.TableRow in project drmips by brunonova.
the class DrMIPSActivity method refreshDataMemoryTableValues.
/**
* Refreshes the values of the registers table.
*/
public void refreshDataMemoryTableValues() {
CPU cpu = getCPU();
if (cpu.hasDataMemory()) {
TextView address, value;
TableRow row;
for (int i = 0; i < cpu.getDataMemory().getMemorySize(); i++) {
row = (TableRow) tblDataMemory.getChildAt(i + 1);
address = (TextView) row.getChildAt(0);
value = (TextView) row.getChildAt(1);
address.setText(Util.formatDataAccordingToFormat(new Data(Data.DATA_SIZE, i * (Data.DATA_SIZE / 8)), cmbDataMemoryFormat.getSelectedItemPosition()) + " ");
value.setText(Util.formatDataAccordingToFormat(new Data(Data.DATA_SIZE, cpu.getDataMemory().getDataInIndex(i)), cmbDataMemoryFormat.getSelectedItemPosition()));
// Highlight memory positions being accessed
int index = cpu.getDataMemory().getAddress().getValue() / (Data.DATA_SIZE / 8);
boolean read = cpu.getDataMemory().getMemRead().getValue() == 1;
boolean write = cpu.getDataMemory().getMemWrite().getValue() == 1;
if (write && i == index) {
if (read)
row.setBackgroundColor(Util.getThemeColor(this, R.attr.rwColor));
else
row.setBackgroundColor(Util.getThemeColor(this, R.attr.writeColor));
} else if (read && i == index)
row.setBackgroundColor(Util.getThemeColor(this, R.attr.readColor));
else
// remove background color
row.setBackgroundResource(0);
}
tblDataMemory.requestLayout();
}
}
use of android.widget.TableRow in project drmips by brunonova.
the class DlgCodeHelp method setContents.
private void setContents(View rootView) {
DrMIPSActivity activity = (DrMIPSActivity) getActivity();
TableLayout tblInstructions = (TableLayout) rootView.findViewById(R.id.tblInstructions);
TableLayout tblPseudos = (TableLayout) rootView.findViewById(R.id.tblPseudos);
TableRow row;
TextView inst, desc;
tblInstructions.removeAllViews();
tblPseudos.removeAllViews();
CPU cpu = activity.getCPU();
for (Instruction i : cpu.getInstructionSet().getInstructions()) {
row = new TableRow(activity);
inst = new TextView(activity);
inst.setText(i.getUsage() + " ");
row.addView(inst);
desc = new TextView(activity);
desc.setText("# " + (i.hasDescription() ? i.getDescription() : "-"));
row.addView(desc);
tblInstructions.addView(row);
}
for (PseudoInstruction i : cpu.getInstructionSet().getPseudoInstructions()) {
row = new TableRow(activity);
inst = new TextView(activity);
inst.setText(i.getUsage() + " ");
row.addView(inst);
desc = new TextView(activity);
desc.setText("# " + (i.hasDescription() ? i.getDescription() : "-"));
row.addView(desc);
tblPseudos.addView(row);
}
}
Aggregations