How can i connect to WiFi printer using IP address on Android?
WifiManager wifi = (WifiManager)getSystemService(Context.WIFI_SERVICE);
WifiCo开发者_运维技巧nfiguration wc = new WifiConfiguration();
Please help me
I dont know exactly but I think that java socket class will help you. WifiManager is only to configur wifi on device. You should simple create socket class and send data.
精彩评论