Câu hỏi được gắn thẻ «android-5.0-lollipop»

Android Lollipop, trước đây chỉ là "Android L", lần đầu tiên được hiển thị tại Google I / O 2014. Tên cuối cùng được xác nhận vào ngày 15 tháng 10. Nó hỗ trợ API cấp 21.

24
Android thay đổi màu nút hành động nổi
Tôi đã cố gắng thay đổi màu Nút hành động nổi của Vật liệu, nhưng không thành công. <android.support.design.widget.FloatingActionButton android:id="@+id/profile_edit_fab" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_gravity="end|bottom" android:layout_margin="16dp" android:clickable="true" android:src="@drawable/ic_mode_edit_white_24dp" /> Tôi đã cố gắng thêm: android:background="@color/mycolor" hoặc thông qua mã: FloatingActionButton fab = (FloatingActionButton) rootView.findViewById(R.id.profile_edit_fab); fab.setBackgroundColor(Color.parseColor("#mycolor")); hoặc là fab.setBackgroundDrawable(new ColorDrawable(Color.parseColor("#mycolor"))); Nhưng không ai …

21
Hoạt động này đã có một thanh hành động được cung cấp bởi trang trí cửa sổ
Cố gắng chuyển qua công cụ của tôi để sử dụng Toolbarthay vì thanh hành động nhưng tôi vẫn nhận được thông báo lỗi java.lang.RuntimeException: Unable to start activity ComponentInfo{com.tyczj.weddingalbum/com.xxx.xxx.MainActivity}: java.lang.IllegalStateException: This Activity already has an action bar supplied by the window decor. Do not request Window.FEATURE_ACTION_BAR and set windowActionBar …


14
appcompat-v7: 21.0.0 ': Không tìm thấy tài nguyên phù hợp với tên đã cho: attr' android: actionModeShareDrawable '
Khi thử sử dụng thư viện hỗ trợ appcompat-v7 mới nhất trong dự án của tôi, tôi gặp phải lỗi sau: /Users/greg/dev/mobile/android_project/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/21.0.0/res/values-v11/values.xml Error:(36, 21) No resource found that matches the given name: attr 'android:actionModeShareDrawable'. Error:(36, 21) No resource found that matches the given name: attr 'android:actionModeShareDrawable'. Error:(36, 21) No resource …


30
Ngoại lệ 'mở không thành công: EACCES (Quyền bị từ chối)' trên Android
Tôi đang nhận được mở thất bại: EACCES (Permission denied) trên đường dây OutputStream myOutput = new FileOutputStream(outFileName); Tôi đã kiểm tra root, và tôi đã thử android.permission.WRITE_EXTERNAL_STORAGE. Làm thế nào tôi có thể khắc phục vấn đề này? try { InputStream myInput; myInput = getAssets().open("XXX.db"); // Path to the …

16
Hiệu ứng vật liệu trên nút với màu nền
Tôi đang sử dụng thư viện hỗ trợ Android v21. Tôi đã tạo một nút với màu nền tùy chỉnh. Các hiệu ứng thiết kế Vật liệu như gợn, lộ đã biến mất (ngoại trừ độ cao khi nhấp) khi tôi sử dụng màu nền. <Button style="?android:attr/buttonStyleSmall" android:background="?attr/colorPrimary" android:textColor="@color/white" android:textAllCaps="true" …

28
Sáp nhập đơn giản không thành công: used-sdk: minSdkVersion 14
Kể từ khi tải xuống SDK mới nhất và cài đặt Android Studio, dự án của tôi không thể xây dựng. Tôi nhận được thông báo sau: Error:Gradle: Execution failed for task ':SampleProject:processProdDebugManifest'. > Manifest merger failed : uses-sdk:minSdkVersion 14 cannot be smaller than version L declared in library com.android.support:support-v4:21.0.0-rc1


10
Các chế độ điều hướng trên thanh hành động không được dùng trong Android L
Nhìn vào báo cáo diff API cho Android "L" xem trước, tôi thấy rằng tất cả các phương pháp liên quan đến chế độ chuyển hướng trong ActionBarlớp (ví dụ như setNavigationMode(), addTab(), selectTab(), & c). hiện đang bị phản đối Các tài liệu giải thích: Các chế độ điều …



22
INSTALL_FAILED_DUPLICATE_PERMISSION CẦU C2D_MESSAGE
Tôi đang sử dụng thông báo của Google trong ứng dụng của mình và cho đến bây giờ tôi đã thực hiện bên dưới trong bảng kê khai: <!-- GCM --> <uses-permission android:name="android.permission.GET_ACCOUNTS" /> <!-- GCM requires a Google account. --> <uses-permission android:name="android.permission.WAKE_LOCK" /> <!-- Keeps the processor from sleeping …



Khi sử dụng trang web của chúng tôi, bạn xác nhận rằng bạn đã đọc và hiểu Chính sách cookieChính sách bảo mật của chúng tôi.
Licensed under cc by-sa 3.0 with attribution required.