0
@Override
  protected void onCreate(Bundle savedInstanceState) {
      super.onCreate(savedInstanceState);
      setContentView(R.layout.activity_device_id);

    SharedPreferences settings = getSharedPreferences("A4APrefs",1);
    int PairId = settings.getInt("CON_ID", 000000); 

    TextView t = (TextView)findViewById(R.id.txtPairId);
    t.setText(PairId);

}

这段代码有什么问题?有人能帮助我吗?

4

1 回答 1

0

这个

t.setText(PairId);

将寻找一个等于的resourceidPairId

试试吧

t.setText(String.valueOf(PairId));  // get the String value

setText(int res)

如果这不能解决您的问题,请具体说明您的代码中什么不起作用

于 2013-06-19T16:52:29.227 回答