• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Apps How to print the result of a method.

Hello guys,


I have a problem.I have textview,a textedit,and a button :

Code:
 public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        final EditText TextEdit = (EditText) findViewById(R.id.TextEdit);  
        final TextView mix =(TextView) findViewById(R.id.mix);
        final Button button = (Button) findViewById(R.id.proces);
        button.setOnClickListener(new View.OnClickListener() {
            public void onClick(View v) {
     
              
    			// Perform action when clicking
 
Back
Top Bottom