Android : Message Intent

前端 未结 5 1885
星月不相逢
星月不相逢 2021-01-12 08:51

I\'m a beginner to android. I need to know is there any intent to open the Create Message window. I tried with this code -

Intent i = new In         


        
5条回答
  •  悲&欢浪女
    2021-01-12 09:38

    You can just in your xml file add

    android:onClick = "onClick" 
    

    and in activity:

    //main buttons listener
    public void onClick(View view)
    {
        switch (view.getId())
        {
                case R.id.sms:
                Intent intentsms = new Intent( Intent.ACTION_VIEW, Uri.parse( "sms:" + "" ) );
                intentsms.putExtra( "sms_body", "Test text..." );
                startActivity( intentsms );
                break;
        }
    } 
    

提交回复
热议问题