New App: Force 4G LTE Only 2020 Pro (Version 1.0)
- By App Update
- Apps & Games
- 0 Replies
EXTRA INFO
- Rating: 4.3
- Installs: 0+
- Download Size: 2.0M
- Version: 1.0
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
I guess I just picked myself a bouquet of oopsie daisies. I thought that said 2018, not 2013. I haven't slept in a while.He posted that almost eight years ago and is no longer on this site-
If you'll forgive me for being pedantic, the built-in Gallery is a specific app. And the Gallery is one of the apps that's most likely to vary between devices, since most manufacturers have their own version.There is no specific app I am using, just the built in Gallery.
There is no general "screen sharpness" setting in Android, though few of us will have any experience with android-based projectors and they may have settings or options that most android devices do not (and may also lack options that other devices have). Also it may depend on what Android version you are running and who the manufacturer is.
Recent Android versions may have a "display size" item in Settings > Display > Advanced, but that basically scales some items on the screen rather than affecting screen resolution. The "developer options" menu, if you can access that(*), usually has a dpi setting (called, unhelpfully, "smallest width" on my device). Again the main effect of that is scaling of UI elements (e.g. if I fiddle with that my wallpaper is unaffected), so it doesn't quite sound like what you see.
If you were rooted and messing with kernel settings that would be different, but we're talking about stuff that is hard-coded there and so not something that can spontaneously change or be altered by the user without root access (and unless this is a very strange device you would know if you were rooted).
(*) To access Developer Options go into your Settings, find the "build number" in the software information, and tap on it repeatedly. It will eventually tell you that you are now a developer. But there are devices which simply don't have this menu/where it has been locked rather than simply hidden behind an Easter Egg, so I can't guarantee that this will work for you.
My connection is strong though, and why does it not do this with cx file explorer?My guess is that you are pushing your Lan connection over the top and the connection breaks when you open too many files at once
Yeah as I said I can download older version apks, but I can't install any of them that were from before my phone's latest update(which was a couple months ago). So I will just try rooting my phone and completely deleting youtube to reinstall an older version. But I will test it out on an old phone first.
I'm not establishing anything.
They MAY be corrupt since no video player will play them.
is there some version of Samsung that is cheap and high-quality at the same time?I use samsung brand phone always but my lovely Samsung galaxy A50s that is bought recently has a problem that it battery finish about very quickly in less than one day

public class WiFi extends AppCompatActivity {
private Button on_off_wifi;
private Button discover_wifi;
public TextView connectionState_tv;
private ListView peerListView;
WifiManager myWifiManager;
private WifiManager.LocalOnlyHotspotReservation mReservation;
private boolean isHotspotEnabled = false;
private final int REQUEST_ENABLE_LOCATION_SYSTEM_SETTINGS = 101;
public WifiP2pManager myWifiP2PManager;
public Context context;
WifiP2pManager.Channel myChannel;
BroadcastReceiver myReceiver;
IntentFilter myIntentFilter;
List<WifiP2pDevice> peers = new ArrayList<WifiP2pDevice>();
String[] deviceNameArray;
WifiP2pDevice[] deviceArray;
@Override
protected void onCreate(@Nullable Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_wifi);
initialize();
on_off_wifi.setOnClickListener(new View.OnClickListener() {
@RequiresApi(api = Build.VERSION_CODES.O)
@Override
public void onClick(View v) {
if(myWifiManager.isWifiEnabled()){
myWifiManager.setWifiEnabled(false);
on_off_wifi. setText("WiFi ON");
enableLocationSettings();
}else {
turnOffHotspot();
myWifiManager.setWifiEnabled(true);
on_off_wifi.setText("WiFi OFF");
}
}
});
}
@RequiresApi(api = Build.VERSION_CODES.O)
private void enableLocationSettings() {
LocationRequest mLocationRequest = new LocationRequest();
/*mLocationRequest.setInterval(10);
mLocationRequest.setSmallestDisplacement(10);
mLocationRequest.setFastestInterval(10);
mLocationRequest.setPriority(LocationRequest.PRIORITY_HIGH_ACCURACY);*/
LocationSettingsRequest.Builder builder = new LocationSettingsRequest.Builder();
builder.addLocationRequest(mLocationRequest)
.setAlwaysShow(false); // Show dialog
Task<LocationSettingsResponse> task= LocationServices.getSettingsClient(this).checkLocationSettings(builder.build());
task.addOnCompleteListener(task1 -> {
try {
LocationSettingsResponse response = task1.getResult(ApiException.class);
// All location settings are satisfied. The client can initialize location
// requests here.
toggleHotspot();
} catch (ApiException exception) {
switch (exception.getStatusCode()) {
case LocationSettingsStatusCodes.RESOLUTION_REQUIRED:
// Location settings are not satisfied. But could be fixed by showing the
// user a dialog.
try {
// Cast to a resolvable exception.
ResolvableApiException resolvable = (ResolvableApiException) exception;
// Show the dialog by calling startResolutionForResult(),
// and check the result in onActivityResult().
resolvable.startResolutionForResult(WiFi.this, REQUEST_ENABLE_LOCATION_SYSTEM_SETTINGS);
} catch (IntentSender.SendIntentException e) {
// Ignore the error.
} catch (ClassCastException e) {
// Ignore, should be an impossible error.
}
break;
case LocationSettingsStatusCodes.SETTINGS_CHANGE_UNAVAILABLE:
// Location settings are not satisfied. However, we have no way to fix the
// settings so we won't show the dialog.
break;
}
}
});
}
@RequiresApi(api = Build.VERSION_CODES.O)
private void toggleHotspot() {
if(!isHotspotEnabled){
turnOnHotspot();
}else {
turnOffHotspot();
}
}
private boolean isLocationPermissionEnable() {
if (ActivityCompat.checkSelfPermission(this, Manifest.permission.ACCESS_COARSE_LOCATION) != PackageManager.PERMISSION_GRANTED) {
ActivityCompat.requestPermissions(this, new String[] {Manifest.permission.ACCESS_COARSE_LOCATION}, 2);
return false;
}
return true;
}
@RequiresApi(api = Build.VERSION_CODES.O)
private void turnOnHotspot() {
if (!isLocationPermissionEnable()) {
return;
}
WifiManager manager = (WifiManager) getApplicationContext().getSystemService(Context.WIFI_SERVICE);
if (manager != null) {
// Don't start when it started (existed)
manager.startLocalOnlyHotspot(new WifiManager.LocalOnlyHotspotCallback() {
@Override
public void onStarted(WifiManager.LocalOnlyHotspotReservation reservation) {
super.onStarted(reservation);
System.out.println(reservation.getWifiConfiguration() + "*****************************************************");
//Log.d(TAG, "Wifi Hotspot is on now");
mReservation = reservation;
isHotspotEnabled = true;
}
@Override
public void onStopped() {
super.onStopped();
//Log.d(TAG, "onStopped: ");
isHotspotEnabled = false;
}
@Override
public void onFailed(int reason) {
super.onFailed(reason);
//Log.d(TAG, "onFailed: ");
isHotspotEnabled = false;
}
}, new Handler());
}
}
@RequiresApi(api = Build.VERSION_CODES.O)
private void turnOffHotspot() {
if (!isLocationPermissionEnable()) {
return;
}
if (mReservation != null) {
mReservation.close();
isHotspotEnabled = false;
}
}
@RequiresApi(api = Build.VERSION_CODES.O)
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
super.onActivityResult(requestCode, resultCode, data);
final LocationSettingsStates states = LocationSettingsStates.fromIntent(data);
switch (requestCode) {
case REQUEST_ENABLE_LOCATION_SYSTEM_SETTINGS:
switch (resultCode) {
case Activity.RESULT_OK:
// All required changes were successfully made
toggleHotspot();
Toast.makeText(WiFi.this, states.isLocationPresent() + "", Toast.LENGTH_SHORT).show();
break;
case Activity.RESULT_CANCELED:
// The user was asked to change settings, but chose not to
Toast.makeText(WiFi.this, "Canceled", Toast.LENGTH_SHORT).show();
break;
default:
break;
}
break;
}
}
private void mylistener() {
on_off_wifi.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
if(myWifiManager.isWifiEnabled()){
myWifiManager.setWifiEnabled(false);
on_off_wifi. setText("WiFi ON");
}else {
myWifiManager.setWifiEnabled(true);
on_off_wifi.setText("WiFi OFF");
}
}
});
discover_wifi.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
myWifiP2PManager.discoverPeers(myChannel, new WifiP2pManager.ActionListener() {
@Override
public void onSuccess() {
connectionState_tv.setText("Discovery started");
}
@Override
public void onFailure(int reason) {
connectionState_tv.setText("Discovery starting failed");
}
});
}
});
peerListView.setOnItemClickListener(new AdapterView.OnItemClickListener() {
@Override
public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
final WifiP2pDevice device = deviceArray[position];
WifiP2pConfig config = new WifiP2pConfig();
config.deviceAddress = device.deviceAddress;
myWifiP2PManager.connect(myChannel, config, new WifiP2pManager.ActionListener() {
@Override
public void onSuccess() {
Toast.makeText(getApplicationContext(),"Connectect to "+device.deviceName,Toast.LENGTH_SHORT).show();
}
@Override
public void onFailure(int reason) {
Toast.makeText(getApplicationContext(),"Not connectected ",Toast.LENGTH_SHORT).show();
}
});
}
});
}
private void initialize() {
on_off_wifi = (Button) findViewById(R.id.on_off);
discover_wifi = (Button) findViewById(R.id.discover);
connectionState_tv = (TextView) findViewById(R.id.connectionState);
peerListView = (ListView) findViewById(R.id.peerListView);
myWifiManager = (WifiManager) getApplicationContext().getSystemService(Context.WIFI_SERVICE);
myWifiP2PManager = (WifiP2pManager) getSystemService(Context.WIFI_P2P_SERVICE);
myChannel = myWifiP2PManager.initialize(this,getMainLooper(),null);
myReceiver = new recovics.htwk.recovics_exo_hand.WifiDirectBroadcastReceiver(myWifiP2PManager,myChannel, WiFi.this);
myIntentFilter = new IntentFilter();
myIntentFilter.addAction(WifiP2pManager.WIFI_P2P_STATE_CHANGED_ACTION);
myIntentFilter.addAction(WifiP2pManager.WIFI_P2P_PEERS_CHANGED_ACTION);
myIntentFilter.addAction(WifiP2pManager.WIFI_P2P_CONNECTION_CHANGED_ACTION);
myIntentFilter.addAction(WifiP2pManager.WIFI_P2P_THIS_DEVICE_CHANGED_ACTION);
}
WifiP2pManager.PeerListListener peerListListener = new WifiP2pManager.PeerListListener() {
@Override
public void onPeersAvailable(WifiP2pDeviceList peerlist) {
if(!peerlist.getDeviceList().equals(peers)) {
peers.clear();
peers.addAll(peerlist.getDeviceList());
deviceNameArray = new String[peerlist.getDeviceList().size()];
deviceArray = new WifiP2pDevice[peerlist.getDeviceList().size()];
int index = 0;
for (WifiP2pDevice device : peerlist.getDeviceList()){
deviceNameArray[index]=device.deviceName;
deviceArray[index]=device;
index++;
}
ArrayAdapter<String> adapter = new ArrayAdapter<String>(getApplicationContext(),android.R.layout.simple_list_item_1,deviceNameArray);
peerListView.setAdapter(adapter);
if(peers.size()==0){
Toast.makeText(getApplicationContext(),"No Devices found",Toast.LENGTH_SHORT).show();
return;
}
}
}
};
WifiP2pManager.ConnectionInfoListener connectionInfoListener = new WifiP2pManager.ConnectionInfoListener() {
@Override
public void onConnectionInfoAvailable(WifiP2pInfo info) {
final InetAddress groupOwnerAddress = info.groupOwnerAddress;
if(info.groupFormed && info.isGroupOwner){
connectionState_tv.setText("host");
}else if(info.groupFormed){
connectionState_tv.setText("Client");
}
}
};
@Override
protected void onResume() {
super.onResume();
registerReceiver(myReceiver,myIntentFilter);
}
@Override
protected void onPause() {
super.onPause();
unregisterReceiver(myReceiver);
}
}
I wasn't even changing providers. I was just changing my Note for the S21 Ultra. My phone was activated and I updated the device info and they confirmed it was all good on their networks through their web pages. The phone has been working flawlessly since. Everything except my recorded voice mails.. I'm paying three bucks a month to have the feature active on two of the four phones on my plan. I wanted it to work.They informed me today that I've had a plan with Verizon since 1981. The guy trying to help explain away the feature not working said he was born in 1991.
![]()
Yeah dude, I love this launcher. It's a big departure from the typical Android launcher so I totally get that it won't work for how everyone wants their homescreen to behave - and that's fine, we've got options!I'd like the hear from @codesplice since he's the one that turned me onto this. What are the other cool things this does.

