I\'m trying to print a list of values in ListView
from a webpage. I have the two permission
I had the same issue and after debugging it further, I found it a thread issue. I changed onCreate
method as below and it works fine. No playing Network Security Configuration file.
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
if (android.os.Build.VERSION.SDK_INT > 9)
{
StrictMode.ThreadPolicy policy = new
StrictMode.ThreadPolicy.Builder().permitAll().build();
StrictMode.setThreadPolicy(policy);
}
....
....
}
Hope it helps.