How to get text of a TextView of a Widget from an Activity?

前端 未结 2 624
说谎
说谎 2021-01-15 00:41

I have a widget and an activity, when I start the activity, I have to read text from the TextView of the widget and show it in the TextWidget of the activity.

My rel

2条回答
  •  无人及你
    2021-01-15 01:34

    you might want to get the actual String by using the .toString() method on the TextView.

    String frase; 
    
    TextView text_frase = (TextView) findViewById(R.id.widget_textview_frase);
    if (text_frase.getText().toString() != null){
       frase = (String) text_frase.getText().toString();
       Log.v(LOG_CLASS_NAME, "frase: "+frase);
    }
    

提交回复
热议问题