为此使用数据库是旧概念。最好的方法是为此使用 XML 解析。这是一种简单的方法来完成您需要的操作。只需从标签中获取数据并在控件上显示。您可以通过简单的 XML Parsing 来做到这一点。为此,您必须在类中添加一个 xml 文件,然后按如下方式使用它
Document doc=XMLfunctions.XMLfromString(this.getResources().openRawResource(name of the xml));
int numResults = XMLfunctions.numResults(doc);
NodeList nodes = doc.getElementsByTagName("head tag");
Element e = (Element)nodes.item(inx);
btn[0].setText( XMLfunctions.getValue(e, "option1"));
btn[1].setText( XMLfunctions.getValue(e, "option2"));
btn[2].setText( XMLfunctions.getValue(e, "option3"));
btn[3].setText( XMLfunctions.getValue(e, "option4"));
tv.setText( XMLfunctions.getValue(e, "name"));
tv1.setText( XMLfunctions.getValue(e, "answer"));
tv.startAnimation(animation);
也可以在谷歌上搜索,如果你觉得有问题,我会帮助你。此链接可帮助您了解 XML 解析