Is there any way to put extras to Intent from preferences?

后端 未结 8 701
广开言路
广开言路 2020-12-13 08:42

Hi i\'m launching activity from preferences screen. Activity is shared among three preferences. I wonder if i can set extras for this activity in xml



        
8条回答
  •  死守一世寂寞
    2020-12-13 08:52

    As your extras are not constants, you should pass them in the java code instead of xml.

    Intent intent = new Intent( this, YourTargetActivity.class );
    intent.putExtra( EXTRAS_KEY, extras );
    yourPref.setIntent( intent );
    

提交回复
热议问题