«android» 태그된 질문

Android는 Google의 모바일 운영체제로 디지털 기기 (스마트 폰, 태블릿, 자동차, TV, 마모, 유리, IoT)를 프로그래밍하거나 개발하는 데 사용됩니다. Android 관련 주제의 경우 android-intent, android-activity, android-adapter 등과 같은 Android 관련 태그를 사용하십시오. 개발 또는 프로그래밍 이외의 질문이지만 Android 프레임 워크와 관련된 질문은 다음 링크를 사용하십시오. https : // android.stackexchange.com.


30
Android에서 TextView의 fontFamily를 변경하는 방법
따라서 android:fontFamilyAndroid에서 를 변경하고 싶지만 Android에서 사전 정의 된 글꼴이 표시되지 않습니다. 사전 정의 된 항목 중 하나를 어떻게 선택합니까? 실제로 TypeFace를 직접 정의 할 필요는 없지만 지금 필요한 것과는 다릅니다. <TextView android:id="@+id/HeaderText" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignParentTop="true" android:layout_centerHorizontal="true" android:layout_marginTop="52dp" android:gravity="center" android:text="CallerBlocker" android:textSize="40dp" android:fontFamily="Arial" /> 내가 한 일이 실제로 작동하지 않는 것 …

27
android.os.FileUriExposedException : file : ///storage/emulated/0/test.txt가 Intent.getData ()를 통해 앱을 넘어 노출됨
파일을 열려고 할 때 앱이 충돌합니다. Android Nougat 아래에서 작동하지만 Android Nougat에서는 충돌합니다. 시스템 파티션이 아닌 SD 카드에서 파일을 열려고 할 때만 충돌이 발생합니다. 권한 문제가 있습니까? 샘플 코드 : File file = new File("/storage/emulated/0/test.txt"); Intent intent = new Intent(Intent.ACTION_VIEW); intent.setDataAndType(Uri.fromFile(file), "text/*"); intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); startActivity(intent); // Crashes on this line 로그: …


20
다른 색상의 표준 Android 버튼
고객의 브랜드에 더 잘 맞도록 표준 Android 버튼의 색상을 약간 변경하고 싶습니다. 지금까지 내가 찾은 가장 좋은 방법은 Button의 드로어 블을 다음에있는 드로어 블로 변경하는 것 입니다 res/drawable/red_button.xml. <?xml version="1.0" encoding="utf-8"?> <selector xmlns:android="http://schemas.android.com/apk/res/android"> <item android:state_pressed="true" android:drawable="@drawable/red_button_pressed" /> <item android:state_focused="true" android:drawable="@drawable/red_button_focus" /> <item android:drawable="@drawable/red_button_rest" /> </selector> 그러나 그렇게하려면 실제로 사용자 정의하려는 …

17
버튼을 클릭 할 때 대화 상자가 닫히는 것을 방지하는 방법
EditText입력 대화 상자가 있습니다. 대화 상자에서 "예"단추를 클릭하면 입력의 유효성을 검사 한 다음 대화 상자를 닫습니다. 그러나 입력이 잘못되면 동일한 대화 상자에 남아 싶습니다. 입력이 무엇이든 "no"버튼을 클릭하면 대화 상자가 자동으로 닫힙니다. 어떻게 비활성화 할 수 있습니까? 그건 그렇고, 나는 대화 상자의 버튼에 PositiveButton과 NegativeButton을 사용했습니다.





30
Android Studio에서 "심볼 R을 확인할 수 없습니다"
이 게시물을 개선하고 싶습니까? 인용과 답변이 올바른 이유에 대한 설명을 포함하여이 질문에 대한 자세한 답변을 제공하십시오. 세부 사항이없는 답변은 편집하거나 삭제할 수 있습니다. 내가 참조 내 모든 클래스의 모든 인스턴스에서 R.id.something의이 R빨간색이며 "기호 R을 확인할 수 없습니다"라고. 또한 R.layout.something빨간색으로 밑줄이 표시되고 "setContentView (?) 메소드를 해결할 수 없습니다"라고 표시됩니다. 프로젝트는 항상 …


13
새로운 Android Fragment 인스턴스화 모범 사례
응용 프로그램에서 새 조각을 인스턴스화하는 두 가지 일반적인 방법을 보았습니다. Fragment newFragment = new MyFragment(); 과 Fragment newFragment = MyFragment.newInstance(); 두 번째 옵션은 정적 메소드를 사용 newInstance()하며 일반적으로 다음 메소드를 포함합니다. public static Fragment newInstance() { MyFragment myFragment = new MyFragment(); return myFragment; } 처음에는 새로운 인스턴스 인스턴스를 만들 때 …



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