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);

の値に等しいaresourceを探しますidPairId

代わりに試す

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

setText(int res)

これで問題が解決しない場合は、コードで何が機能しないかを具体的に記入してください

于 2013-06-19T16:52:29.227 に答える