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

Bố cục xác định cấu trúc trực quan cho giao diện người dùng, chẳng hạn như giao diện người dùng cho một hoạt động, đoạn hoặc tiện ích ứng dụng.




30
Bạn cần sử dụng một chủ đề Theme.AppCompat (hoặc hậu duệ) với hoạt động này
Studio Android 0.4.5 Tài liệu Android để tạo hộp thoại tùy chỉnh: http://developer.android.com/guide/topics/ui/dialogs.html Nếu bạn muốn có hộp thoại tùy chỉnh, thay vào đó, bạn có thể hiển thị Hoạt động dưới dạng hộp thoại thay vì sử dụng API Hộp thoại. Chỉ cần tạo một hoạt động và đặt …

7
Công cụ của What What: bối cảnh trong các tập tin bố cục Android?
Bắt đầu với phiên bản ADT mới gần đây, tôi đã nhận thấy thuộc tính mới này trên các tệp XML bố cục, ví dụ: <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent" tools:context=".MainActivity" /> "Công cụ: bối cảnh" được sử dụng để làm gì? Làm thế nào mà nó thậm chí …



20
Nút Android tiêu chuẩn với màu khác
Tôi muốn thay đổi màu sắc của nút Android tiêu chuẩn một chút để phù hợp hơn với thương hiệu của khách hàng. Cách tốt nhất mà tôi đã tìm thấy để làm điều này cho đến nay là thay đổi khả Buttonnăng có thể rút ra thành có thể …




18
Làm cách nào để căn chỉnh các khung nhìn ở dưới cùng của màn hình?
Đây là mã bố trí của tôi; <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent"> <TextView android:text="@string/welcome" android:id="@+id/TextView" android:layout_width="fill_parent" android:layout_height="wrap_content"> </TextView> <LinearLayout android:id="@+id/LinearLayout" android:orientation="horizontal" android:layout_width="wrap_content" android:layout_height="wrap_content" android:gravity="bottom"> <EditText android:id="@+id/EditText" android:layout_width="fill_parent" android:layout_height="wrap_content"> </EditText> <Button android:text="@string/label_submit_button" android:id="@+id/Button" android:layout_width="wrap_content" android:layout_height="wrap_content"> </Button> </LinearLayout> </LinearLayout> Những gì nó trông giống như ở bên trái và …




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.