It is not possible to get only the location of the tower in android. You can do the following:
In the manifest, add permission:
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
and in your code use
Location location = manager.getLastKnownLocation(LocationManager.NETWORK_PROVIDER);
This will help you get the network location. If his course, he will most likely provide you with a Tower-based location.
, , .