你如何从吐司上的 xml 中获取字符串

how do you get strings from the xml on the toast

如何从 toast 中的 xml 获取我的字符串

喜欢

<string name="Pic_taken">Billedet er nu blevet taget! </string>

在此

Toast.makeText(getApplicationContext(), "Billedet er nu blevet taget!", Toast.LENGTH_SHORT).show();

像这样:

Toast.makeText(getApplicationContext(), getString(R.string.Pic_taken), Toast.LENGTH_SHORT).show();

只需使用 Toast API:

public static Toast makeText(Context context, @StringRes int resId, @Duration int duration)

Toast.makeText(getApplicationContext(), R.string.Pic_taken, Toast.LENGTH_SHORT).show();

格式:

Toast.makeText(Context context, @StringRes int resId, @Duration int duration);

因此,对于您的情况,代码将是:

Toast.makeText(getApplicationContext(), R.string.Pic_taken, Toast.LENGTH_SHORT).show();