ArrayAdapter 替代方案

发布于 2024-10-24 03:53:52 字数 816 浏览 5 评论 0原文

我在我的应用程序中发现显示问题,其中一位用户建议我不要使用 ArrayAdapter...我想知道我是否不能使用其他东西... 这是我必须在其上使用 ArrayAdapter 的函数:

public void updatelv(Activity activity) {
        SharedPreferences preferences = PreferenceManager.getDefaultSharedPreferences(context);
        String fileName = getResources().getString(R.string.fileName);
        fileDir = "" + preferences.getString("login", "") + "."+ preferences.getString("marque", "") + ".";
        s = myIO.ReadFilePerLine(getApplicationContext(), fileDir+fileName);
        ListView L = (ListView) findViewById(R.id.lv);
        L.setAdapter(new ArrayAdapter<String>(this, R.layout.list_item, s[0]));
    }

这​​是我每次点击按钮时想要存储的数据:

data = date + " : " + y + "L/100KM\n"+ " " + value1 + "L "+ value2 + "KM\n";

谢谢您的帮助:)。

I'm finding a displaying problem in my app and one of the users advices me to not use ArrayAdapter... i'm wondering if i can't use other thing...
here is my function that i have to use an ArrayAdapter on it:

public void updatelv(Activity activity) {
        SharedPreferences preferences = PreferenceManager.getDefaultSharedPreferences(context);
        String fileName = getResources().getString(R.string.fileName);
        fileDir = "" + preferences.getString("login", "") + "."+ preferences.getString("marque", "") + ".";
        s = myIO.ReadFilePerLine(getApplicationContext(), fileDir+fileName);
        ListView L = (ListView) findViewById(R.id.lv);
        L.setAdapter(new ArrayAdapter<String>(this, R.layout.list_item, s[0]));
    }

And this is the data that i want to store whenever i tap on a button:

data = date + " : " + y + "L/100KM\n"+ " " + value1 + "L "+ value2 + "KM\n";

Thank you for your help :).

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文