• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Languages problem

With your Gboard on screen, tap on the wrench icon to get to its Settings menu -- in the Languages menu you can add or delete additional language keyboards; in the Preferences menu there's an option to 'Show language switch key' which adds a little globe shaped icon next to the space bar so if you have multiple language keyboards installed just tap on that icon to toggle from one to another; in the Advanced menu there's an option to 'Show app icon' which may or may not make things more convenient to access the Gboard app itself if needed.

Lots of other tips here:
https://www.computerworld.com/article/3048523/gboard-android-shortcuts.html

Accessories Chromebook or chromebox

well are you looking for mobility? or not?

i love my pixelbook. it is pretty much all i use.....especially now that i have stadia, i can even game on it now!!!!!!

....so yes my vote goes to the chromebook. plus i see a lot of folks come here asking for help with their android box with not much help as most of us here do not own an android box.

also i love asus products. i used to have a few of the tablets and i think i have a laptop from them lying around some place.

Battery slowly expanding?

I would also like to put as a side note that the phone used to come into contact with fresh water quite frequently but no salt water, I have never noticed the phone act strangely after coming into contact with water during any of those times nor had either lens fogged up. It never came into contact with water after the lens broke either.
welcome to AF!!!!!!!!!!!!!!!!!

are you like a lifeguard?????:p:p:p:p:p:p:p:p

if the back of the phone is expanding, i would bet my money on it being the battery. the s7 is getting pretty old and batteries tend to have a shelf life of about 3-4 years which puts your device right in the middle of it. i would suggest you start looking for an upgrade asap.

POST jquery not working

Hello,

I'm newly and I want to ask you how to use POST jquery from cordova apache? From browser works, but in android device not working.
<!DOCTYPE html>
<!--
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
-->
<html>
<head>
<!--
Customize this policy to fit your own app's needs. For more guidance, see:
https://github.com/apache/cordova-plugin-whitelist/blob/master/README.md#content-security-policy
Some notes:
* gap: is required only on iOS (when using UIWebView) and is needed for JS->native communication
* https://ssl.gstatic.com is required only on Android and is needed for TalkBack to function properly
* Disables use of inline scripts in order to mitigate risk of XSS vulnerabilities. To change this:
* Enable inline JS: add 'unsafe-inline' to default-src
-->
<!--<meta http-equiv="Content-Security-Policy" content="default-src 'self' data: gap: https://ssl.gstatic.com 'unsafe-eval'; style-src 'self' 'unsafe-inline'; media-src *; img-src 'self' data: content:;>-->
<meta name="format-detection" content="telephone=no">
<meta name="msapplication-tap-highlight" content="no">
<meta name="viewport" content="initial-scale=1, width=device-width, viewport-fit=cover">
<link rel="stylesheet" type="text/css" href="css/index.css">
<title>Hello World</title>
</head>
<body>
<div class="app">
<h1>Apache Cordova</h1>
<div id="deviceready" class="blink">
<p class="event listening">Connecting to Device</p>
<p class="event received">Device is Ready</p>
</div>
</div>
<script type="text/javascript" src="cordova.js"></script>
<script type="text/javascript" src="js/index.js"></script>
<script type="text/javascript" src="js/jquery-3.4.1.min.js"></script>
<script type="text/javascript" src="js/jquery.cookie.min.js"></script>
<script type="text/javascript" src="js/datatables.min.js"></script>

<script>
function getUrlVars() {
var vars = [], hash;
var hashes = window.location.href.slice(window.location.href.indexOf('?') + 1).split('&');
for (var i = 0; i < hashes.length; i++) {
hash = hashes.split('=');
vars.push(hash[0]);
vars[hash[0]] = hash[1];
}
return vars;
}



$(document).ready(function () {
$("#dvTest").click(function () {


$.ajax({
type: "POST",
url: "http://www.domainname/webservice/login.asmx/prijava",
// data: JSON.stringify({ username: "desoft1", password: "+UvML^cIAjFL}4" }),
// contentType: "application/json; charset=utf-8",
// dataType: "json",
success: function (data) {

alert("30");

var json = data.d;

$('#example').DataTable({
"data": JSON.parse(json),
"columns": [
{ "data": "Id" },
{ "data": "Company" }
]
});

$('#example tbody').on('click', 'tr', function () {
var table = $('#example').DataTable();

var data = table.row(this).data();
$.cookie("IdCompany", data.Id);


});
},
failure: function (msg) {
alert(msg.d);
}
});
});
});
</script>
<br /><br />
<div id="dvTest">TEST121</div>


<table id="example" class="display" style="width:100%">
<thead>
<tr>
<th>Id</th>
<th>Company</th>
</tr>
</thead>
</table>

</body>
</html>



config.xml:
<?xml version='1.0' encoding='utf-8'?>
<widget id="pn" version="1.0.0" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
<name>pn</name>
<description>
A sample Apache Cordova application that responds to the deviceready event.
</description>
<author email="dev@cordova.apache.org" href="http://cordova.io">
Apache Cordova Team
</author>
<content src="index.html" />
<plugin name="cordova-plugin-whitelist" spec="1" />
<access origin="*" />
<access origin="*" subdomains="true"/>
<allow-navigation href="*" />
<allow-intent href="http://*/*" />
<allow-intent href="https://*/*" />
<allow-intent href="tel:*" />
<allow-intent href="sms:*" />
<allow-intent href="mailto:*" />
<allow-intent href="geo:*" />
<platform name="android">
<allow-intent href="market:*" />
</platform>
<platform name="ios">
<allow-intent href="itms:*" />
<allow-intent href="itms-apps:*" />
</platform>
<resource-file src="platforms/android/app/src/main/AndroidManifest.xml" target="AndroidManifest.xml" />
</widget>

AndroidMainfest.xml:
<?xml version='1.0' encoding='utf-8'?>
<manifest android:hardwareAccelerated="true" android:usesCleartextTraffic="true" android:versionCode="10000" android:versionName="1.0.0" package="pn" xmlns:android="http://schemas.android.com/apk/res/android">
<supports-screens android:anyDensity="true" android:largeScreens="true" android:normalScreens="true" android:resizeable="true" android:smallScreens="true" android:xlargeScreens="true" />
<uses-permission android:name="android.permission.INTERNET" />
<application android:hardwareAccelerated="true" android:icon="@Mipmap/ic_launcher" android:label="@String/app_name" android:supportsRtl="true">
<activity android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale|smallestScreenSize|screenLayout|uiMode" android:label="@String/activity_name" android:launchMode="singleTop" android:name="MainActivity" android:theme="@android:style/Theme.DeviceDefault.NoActionBar" android:windowSoftInputMode="adjustResize">
<intent-filter android:label="@String/launcher_name">
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>



Thank you for your help.

Searching ROMs for the ZTE Compel based on android 5.0

Thata the best I could come up with and its questionable. Theres a link tova YouTube video and suggestions in the thread in regards to rooting and a TWRP workaround that was developed for another ZTE. Its worth reading but even so there no custom roms that I could find for that device. Im providing the link for information only. I would strongly advice against trying the suggestions in this XDA link because it will most likely hard-brick you phone.

https://www.google.com/amp/s/forum..../zte-z830-compel-rooting-thread-t3035439/amp/

PS. No roms and real no development that I could find for the ZTE compel.

Help with icon

no idea.

.....we get this question on a daily basis. most of these questions never get answered......why you asked?

well there millions and millions of apps out there, each with their own notification icon. if you add in all of the websites that can also send notification icons, you can add millions more of icons to the list.......that is quite a list!!!!!!!!!

to be able to recognize an app icon just from a picture is almost like finding a needle in the haystack.

the only true way of knowing is thru the phone. but, in most cases the phone is not accessible as it usually belongs to someone else. and most do not feel like going to the person and asking what the notification on their phone is. but without looking at the notification list from within the phone's settings, it is almost impossible to know what it is.

.......sorry but i have no idea what it is and good luck.

Help Skype Call Possibility Removal from Contact List

Hey guys,


I am from Hungary and relatively new to the Android World. I am contacting you regarding the following issue/question. I got a new phone and as of now in my phone contacts there is the possibility to call my contacts via Skype ( I see a Skype logo/icon), however not via mobile. On the other hand, if I create a new contact, that person can be called via mobile, but not via Skype anymore.


I would like to achive that the only possible way to call my contacts is via mobile and not via Skype. Do you have any idea, how I could make it happen? One option would be to create all the contacts new, however that would take ages.


Many thanks!


Kind Regards,

Adam

Attachments

  • Contacts_no_skype.jpg
    Contacts_no_skype.jpg
    69.4 KB · Views: 143

Hello-Hello

Maybe worth checking the phones sound settings.

go to Settings, Sounds & Vibrations ,Sound Quality & Effects and check if "Surround" or "Concert Hall" is turned on. Make sure concert Hall is not on in the sound quality and effects setting and if it is turn it off.

Update Issue

I would have suggested Smart lock but that is not compatible with your device. As for Good Lock not working after the update, your not alone. Information on this is in the link below

https://us.community.samsung.com/t5/Note10/Android-10-ONE-UI-2-0-Good-Lock-Not-Working/td-p/1043152

Im not familiar with your device or how the new update has created issues but it might be caused by incompatibility with Good Lock or perhaps some other user app. The best way to find out would be to turn off you phone and reboot into safe mode. Check on line for the proper key combinations.

https://www.google.com/amp/s/www.an...fe-mode-on-the-samsung-galaxy-s10-970172/amp/

clipboard

There is a wonderful app I use called Clipper+ it's like the clipboard (which only remembers the last thing you copied). Clipper+ stores the last 20 things copied: so you can go back, tap on one and it loads that into the system clipboard, ready to paste. There are also things called "snippets" which are like a persistent copy, and they stay stored there until edited or deleted. So if you have something that you want to paste quite often, you can store it as a snippet. I love this app and highly recommend it.
Screenshot_2020-01-02-19-44-05.png
Thats great, I glad that app works well on your device. Having twenty things copied to the clipboard is a very useful feature. The clipboard on my Note 4 hase 20 already and Im not sure if that was stock or part of my custom rom. To tell you the truth, I have a vague recollection of the stock OS, I just dont remember anymore. Anyway, you also mentioned a feature that I had never heard before called "snippets". Thanks The-Chief, I will download the app and give it a try.

Isn't Geofencing DESIGNED to work in background?

I have been struggling a lot to get geofencing working on Android.
In my mind, geofencing was created to be able to send notifications when an app runs in the background and the user crosses a fence. Doesn't it work like this on Android? It does on iOS...
But whatever I do (and I followed Google samples and advice) I can't get it to work in the background. It always stops at some point whatever I do...
And my onReceive is only called when the app is running.
HELP! Any advice as to what to do?

Thank you!!

Pushpin all of a sudden appeared in my messaging app on 1 contact only...

Welcome to Android Forums, Jennifer Morales!

We'll do our best to help you, but first you need to help us. :)

Please take a deep breath, calm down, then write coherent sentences [with punctuation] explaining the issue. Be as specific as possible.

The following info will help:

- which app you're using
-- a link to its Play Store page if possible
- when did the problem start?
- do you recall anything unusual happening around the same time?
- can you reproduce the problem?
- tell us your phone's manufacturer and model
- posting a screenshot would help a lot

If you need help with any of that, let us know!

Filter

Back
Top Bottom