2012-05-08 67 views
0

我只是想在電子郵件中保存複選框的真/假狀態。我很新,在我走的時候自我教導,所以我很抱歉。先謝謝你!!這裏是我有:發送複選框狀態數據到電子郵件

public class eActivity extends Activity { 

    private CheckBox check1; 

    ///onCreate 

    check1 = (CheckBox) findViewById(R.id.check1); 

    ///Email Intent 

    email.putExtra(android.content.Intent.EXTRA_TEXT, 
    ////What do i put here to get the state of the checkbox true/false?//// 

回答

0

我發現我所需要的答案:

​​

它現在的作品完美,三江源!

相關問題