Unable To Read More Than One Text Files Stored In Sdcard
package com.paad.trial; import java.io.File; import java.util.ArrayList; import java.util.List; import android.app.AlertDialog; import android.app.ListActivity; import android.co
Solution 1:
In Readfile
you don't have - and shouldn't ever - instantiate AndroindApplication
. To pass a string between two activities you should use Intents.
It's pretty simple in the case of a string. See Passing data between activities in Android
Post a Comment for "Unable To Read More Than One Text Files Stored In Sdcard"