本帖最后由 sky123123 于 2011-05-30 17:16:59 编辑

解决方案 »

  1.   

    Intent intent = new Intent(Intent.ACTION_VIEW);
         intent.setClassName("com.android.phone",
         "com.android.phone.CallFeaturesSetting");
         startActivity(intent);
    在 \packages\apps\Settings\res\xml\settings.xml 中:<PreferenceScreen android:key="call_settings" android:title="@string/call_settings_title" android:summary="@string/call_settings_summary"> <intent android:action="android.intent.action.MAIN" android:targetPackage="com.android.phone" android:targetClass="com.android.phone.CallFeaturesSetting" />