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

Android là hệ điều hành di động của Google, được sử dụng để lập trình hoặc phát triển các thiết bị kỹ thuật số (Điện thoại thông minh, Máy tính bảng, Ô tô, TV, Wear, Glass, IoT). Đối với các chủ đề liên quan đến Android, hãy sử dụng các thẻ dành riêng cho Android như android-aim, android-Activity, android-adapter, v.v. Đối với các câu hỏi ngoài phát triển hoặc lập trình, nhưng liên quan đến khung Android, hãy sử dụng liên kết này: https: // android.stackexchange.com.


27
Trong ứng dụng android Phương thức Thanh công cụ.setTitle không có hiệu lực - tên ứng dụng được hiển thị dưới dạng tiêu đề
Tôi đang cố gắng tạo ứng dụng đơn giản bằng thư viện android-support-v7: 21. Đoạn mã: MainActivity.java public class MainActivity extends ActionBarActivity { Toolbar mActionBarToolbar; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); mActionBarToolbar = (Toolbar) findViewById(R.id.toolbar_actionbar); mActionBarToolbar.setTitle("My title"); setSupportActionBar(mActionBarToolbar); } Activity_main.xml <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" android:fitsSystemWindows="true" android:orientation="vertical"> <android.support.v7.widget.Toolbar …


7
Nhập văn bản hộp thoại Android
Khi người dùng nhấp Buttonvào Ứng dụng của tôi (được in bằng a SurfaceView), tôi muốn một văn bản Dialogxuất hiện và tôi muốn lưu trữ kết quả trong một String. Tôi muốn văn bản Dialogche phủ màn hình hiện tại. Tôi có thể làm cái này như thế nào?
298 android  text  input 


7
Lớp Handler này phải là tĩnh hoặc có thể xảy ra rò rỉ: In chuẩnHandler
Tôi đang phát triển ứng dụng Android 2.3.3 với một dịch vụ. Tôi có dịch vụ này bên trong dịch vụ đó để liên lạc với Hoạt động chính: public class UDPListenerService extends Service { private static final String TAG = "UDPListenerService"; //private ThreadGroup myThreads = new ThreadGroup("UDPListenerServiceWorker"); private UDPListenerThread …

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
các vấn đề thường gặp phát sinh trong chế độ xem Android, Lỗi phân tích cú pháp XML: tiền tố không liên kết
Tôi có vấn đề thường xuyên trong xem Android , Error parsing XML: unbound prefix on Line 2. <?xml version="1.0" encoding="utf-8"?> <LinearLayout android:orientation="vertical" android:id="@+id/myScrollLayout" android:layout_width="fill_parent" android:layout_height="wrap_content"> <TextView android:layout_height="wrap_content" android:layout_width="fill_parent" android:text="Family" android:id="@+id/Family" android:textSize="16px" android:padding="5px" android:textStyle="bold" android:gravity="center_horizontal"> </TextView> <ScrollView xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="wrap_content" android:orientation="vertical" android:scrollbars="vertical"> <LinearLayout android:orientation="vertical" android:id="@+id/myMainLayout" android:layout_width="fill_parent" android:layout_height="wrap_content"> </LinearLayout> </ScrollView> </LinearLayout>



9
GSON ném ném được mong đợi BEGIN_OB DỰ ÁN nhưng là BEGIN_ARRAY?
Tôi đang cố phân tích một chuỗi JSON như thế này [ { "updated_at":"2012-03-02 21:06:01", "fetched_at":"2012-03-02 21:28:37.728840", "description":null, "language":null, "title":"JOHN", "url":"http://rus.JOHN.JOHN/rss.php", "icon_url":null, "logo_url":null, "id":"4f4791da203d0c2d76000035", "modified":"2012-03-02 23:28:58.840076" }, { "updated_at":"2012-03-02 14:07:44", "fetched_at":"2012-03-02 21:28:37.033108", "description":null, "language":null, "title":"PETER", "url":"http://PETER.PETER.lv/rss.php", "icon_url":null, "logo_url":null, "id":"4f476f61203d0c2d89000253", "modified":"2012-03-02 23:28:57.928001" } ] vào một danh sách các đối tượng. …
295 java  android  gson 


16
RecyclerView so với ListView
Từ nhà phát triển Android ( Tạo danh sách và thẻ ): Tiện ích RecyclerView là phiên bản ListView tiên tiến và linh hoạt hơn. Được rồi, nghe có vẻ hay, nhưng khi tôi nhìn thấy bức ảnh ví dụ này, tôi đã thực sự bối rối về sự khác …



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.