問題タブ [android-4.3-jelly-bean]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票する
1 に答える
17457 参照

android - Android 4.3 キーチェーンの例

私はアンドロイド 4.3 のキーチェーンの概念を理解しようとしています。それを理解するための例を得ることができれば、本当に感謝しています。

0 投票する
2 に答える
2415 参照

java - Android WebView クラッシュ 4.3

4.3 リリース以降、Android の支払い Web ビューで問題が発生しました。

SSL証明書のリダイレクトが原因だと思いますが、変更できません。

samsung または sony < 4.2 で URL を試してみましたが成功しましたが、2 つの異なる 4.3 nexus でこのダンプを取得しました。

私のWebビューは単純です

ありがとう

0 投票する
1 に答える
1006 参照

android - Android API レベル 17 で CellInfoWcdma クラスを使用する

TelephonyManager.getAllCellInfo() を使用して隣接セルの rssi 信号を探しています。これは、必要なすべての情報を含む CellInfo (さまざまなセル タワー タイプ、gsm、lte、cdma などに拡張された抽象クラス) オブジェクトのリストを返します。

私のアプリは Android API レベル 17 を使用して構築されており、正常に動作します。

Android 4.3 (API レベル 18) にアップグレードしたばかりの新しい携帯電話でアプリケーションを実行すると、getAllCellInfo() を呼び出すと、CellInfoWcdma (API レベル 18 で追加された新しいクラス) のリストが返されます。

いくつかの理由で、SDK をアップグレードできません。

SDK をアップグレードせずに、この種のオブジェクトからセル ID と rssi を取得するにはどうすればよいですか?

ありがとう!

0 投票する
1 に答える
294 参照

installation - Android 4.3 の Galaxy Nexus と自分のアプリケーションとの非互換性の問題

アルファ テスト用に Play ストアに Android アプリケーションをアップロードしました。以下は、その aapt ダンプ バッジの詳細です。このアプリケーションは、Android 4.3 を搭載した Galaxy Nexus と互換性がないことを示しています。私はこの電話自体でこのアプリケーションをテストしています。私は何が間違っているのか理解できないようです。Android 4.2.2である私の他の電話は互換性があるようです。

0 投票する
0 に答える
447 参照

android - Android 4.3: Spellchecker: Disable red underline without disabling typeahead suggestions

I have an EditText in which the user can type freeform text, alongside programmatically created Spannable tokens that the user can delete but not modify.

Unfortunately, these tokens still get spell checked and underlined, even though my app does not let the user modify them. They do not contain English words.

Is there a way to turn off this new red underline? Is there a way to turn off this new red underline only for certain text spans?

Adding the textNoSuggestions flag to the android:inputType field turns off the red line on 4.3, but also turns off the spelling suggestions that appear above the keyboard as the user types, which I want to keep. On 4.1 this flag does not disable spelling suggestions.

Thanks!