作出最好的方面,我有下面的代碼:這是在應用程序電話
Intent myintent = new Intent (ScreenOne.this, ScreenTwo.class);
startActivity(myintent);
ScreenTwo包括電話號碼清單。 這兩個屏幕都擴展了BaseScreen。
我需要做的是點擊一個電話號碼,並在我的應用程序內撥打電話。 我的代碼是正確的,唯一的問題是屏幕背後的ScreenTwo。
我猜這是與我在意圖傳遞的上下文的東西。
我已經使用
- ScreenOne.this,
- 此,
- getBaseContext(),
- getApplicationContext(),
- getApplication和
- 的getParent(),
都無濟於事。
該類擴展活動,爲什麼你想這樣做? –
請參閱我的編輯 – fasheikh