タグ付けされた質問 「android-2.2-froyo」

14
プログラムでAndroidボタンにdrawableLeftを設定する方法は?
ボタンを動的に作成しています。最初にXMLを使用してスタイルを設定し、以下のXMLをプログラム化しようとしています。 <Button android:id="@+id/buttonIdDoesntMatter" android:layout_height="wrap_content" android:layout_width="fill_parent" android:text="buttonName" android:drawableLeft="@drawable/imageWillChange" android:onClick="listener" android:layout_width="fill_parent"> </Button> これは私が今のところ持っているものです。ドローアブル以外は何でもできます。 linear = (LinearLayout) findViewById(R.id.LinearView); Button button = new Button(this); button.setText("Button"); button.setOnClickListener(listener); button.setLayoutParams( new LayoutParams( android.view.ViewGroup.LayoutParams.FILL_PARENT, android.view.ViewGroup.LayoutParams.WRAP_CONTENT ) ); linear.addView(button);

30
Android ADBデバイスはオフラインで、コマンドを発行できません
コマンドラインまたはEclipseでADBを使用してデバイスに接続できなくなりました。 コマンドを実行する adb devices デバイス名を返しますが、オフラインであると表示されます。 私が試したもの。 Androidデバッグモードを切り替えました Google USBドライバーを再インストールした OSを以前動作していたバックアップ(CyanogenMod)に復元しました USBコードをスワップ。 電話/コンピュータを複数回再起動した Android SDKを更新しました 何が起こっているのか本当にわかりません。あなたが私が試すことができると思うものは何でも、私はすべて耳です。 明らかに、同じ問題が発生している場合、問題はおそらく古いSDKです。4.2.2以降、接続デバイスのRSAフィンガープリントを確認する必要があるセキュリティ機能があります。SDKマネージャーを開いてツールを更新してください!その後、再起動します。

29
ADTには「org.eclipse.wst.sse.core 0.0.0」が必要ですが、見つかりませんでした
Fedora 14(Linux)の新規インストールにAndroid SDKをインストールしています。私はeclipseをインストールし、tools / android sdkツールを実行してSDKのすべてのEclipseコンポーネントをインストールしました。DDMSを単独で選択すると、DDMSをインストールすることができました。 そして最後のコンポーネント-Android開発者ツールについては、以下に貼り付けた醜いエラーメッセージが表示されます。 今、私はEclipse依存関係の地獄で立ち往生しています。 Fedoraで利用可能なパッケージを検索しましたが、このEclipseの依存関係を満たすために必要なファイルが含まれているパッケージを見つけることができません。誰がEclipseが求めていること、そしてそれが住んでいるFedoraパッケージを翻訳していただけませんか? 醜いエラー: Cannot complete the install because one or more required items could not be found. Software being installed: Android Development Tools 0.9.9.v201009221407-60953 (com.android.ide.eclipse.adt.feature.group 0.9.9.v201009221407-60953) Missing requirement: Android Development Tools 0.9.9.v201009221407-60953 (com.android.ide.eclipse.adt.feature.group 0.9.9.v201009221407-60953) requires 'org.eclipse.wst.sse.core 0.0.0' but it could not be found

14
インテントを処理するアクティビティが見つかりません:android.intent.action.VIEW
これは、録音されたオーディオ3gpファイルを再生するための私のコードです Intent intent = new Intent(android.content.Intent.ACTION_VIEW); Uri data = Uri.parse(path); intent.setDataAndType(data, "audio/mp3"); startActivity(intent); しかし、それを私のHTCデバイス(Android 2.2 Froyo)で実行すると、例外が表示されます。 05-04 16:37:37.597: WARN/System.err(4065): android.content.ActivityNotFoundException: No Activity found to handle Intent { act=android.intent.action.VIEW dat=/mnt/sdcard/mnt/sdcard/audio-android.3gp typ=audio/mp3 } 05-04 16:37:37.597: WARN/System.err(4065): at android.app.Instrumentation.checkStartActivityResult(Instrumentation.java:1567) 05-04 16:37:37.597: INFO/ActivityManager(92): Starting activity: Intent { act=android.intent.action.VIEW dat=/mnt/sdcard/mnt/sdcard/audio-android.3gp typ=audio/mp3 } 05-04 16:37:37.607: WARN/System.err(4065): …
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.