Questions tagged «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驱动程序 将操作系统还原到以前可以正常工作的备份(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时,便能够安装它。 对于最后一个组件-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
找不到用于处理Intent的活动: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): …
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.