«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( …

30
Android ADB 기기 오프라인, 명령을 실행할 수 없음
명령 줄이나 Eclipse 에서 ADB 를 사용하여 더 이상 장치에 연결할 수 없습니다 . 명령 실행 adb devices 장치 이름을 반환하지만 오프라인 상태입니다. 내가 시도한 것. Android 디버깅 모드 전환 Google USB 드라이버 재설치 OS를 이전 작업 백업 ( CyanogenMod )으로 복원 USB 코드를 교체했습니다 전화 / 컴퓨터를 여러 번 …

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에서 …

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) …
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.