android xml文件中的十六进制值

时间:2015-06-30 11:36:07

标签: android xml hex android-preferences

我需要在我的应用程序首选项中保留十六进制值, 0x 前缀。

我将首选项的默认值指定为 0x0A

public class App
{
  private readonly Task initTask;

  public App(string dbPath, ISQLitePlatform sqlitePlatform)
  {
    initTask = Init();
  }

  private async Task Init()
  {
    // Move your code here
  }
}

但是当我试图检索此值时,我得到" 0xa"。

为什么会这样,我该如何解决这个问题?

0 个答案:

没有答案