I want to pass string from one activity to another.In the second activity the string should be readable.
listview.setOnItemClickListener(new AdapterView.OnItemClickListener() {
First actvity code
        @Override
        public void onItemClick(AdapterView<?> arg0, View arg1, int position,
                                long id) {
            // TODO Auto-generated method stub
            Intent dash_des = new Intent(getApplicationContext(),Dashboard_Description__page.class);
           //here should be t my string
        }
    });
 protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_dashboard__description__page);
        //here i want to read the string data
        }
 
     
     
     
     
    