gpt4 book ai didi

android - 如何从 sharedpreferences 中检索微调器值?安卓

转载 作者:行者123 更新时间:2023-11-30 03:48:23 25 4
gpt4 key购买 nike

您好,我有一个配置文件布局文件,其中保存了用户输入的数据。这个布局有复选框、 TextView 和微调器。然后它将像在 TextView 中一样在我的用户配置文件布局文件中查看。我将它们保存到 sharedpreferences。我想要做的是检索用户从微调器中选择/保存的字符串值,将其显示在 TextView 中。我该怎么做?

我想知道如何实现这个:

 tvbloodtype.setText(prefs.getInt("bloodtype",0));

非常感谢任何帮助。谢谢。

我得到了错误:

ResourcesNotFoundException: 字符串资源 ID

最佳答案

获得微调器对象后,您可以调用 yourSpinner.OnItemSelectedListener() 来获取所选的对象。然后你可以将你的项目保存在你的 TextView 中

yourSpinner.OnItemSelectedListener(new OnItemSelectedListener {

public void onItemSelected(AdapterView <? > parentview, View v, int position, long id) {
curPos = position;
String selected = parentView.getItemAtPosition(position).toString();
tvbloodtype.setText(selected);
}

});

另请引用:How do you get the selected value of a Spinner?

关于android - 如何从 sharedpreferences 中检索微调器值?安卓,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14568927/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com