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

Giao diện người dùng (UI) là hệ thống thông qua đó mọi người tương tác với máy tính. Thẻ này có thể được sử dụng cho các câu hỏi lập trình liên quan đến UI. Lưu ý rằng có một trang web Stack Exchange riêng cho Giao diện người dùng, Tương tác với thiết kế Trải nghiệm người dùng và Máy tính: https://ux.stackexchange.com.




17
Làm cách nào để tạo RecyclerView với nhiều kiểu xem?
Từ https://developer.android.com/preview/m vật liệu / ui-widgets.html Khi chúng ta tạo, RecyclerView.Adapterchúng ta phải xác định ViewHolderrằng sẽ liên kết với bộ điều hợp. public class MyAdapter extends RecyclerView.Adapter<MyAdapter.ViewHolder> { private String[] mDataset; public MyAdapter(String[] myDataset) { mDataset = myDataset; } public static class ViewHolder extends RecyclerView.ViewHolder { public TextView mTextView; …

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à …





12
API GUI gốc của Linux là gì?
Tôi hy vọng đây không phải là một câu hỏi ngu ngốc nhưng nó luôn là điều tôi băn khoăn. Cả Windows (Win32 API) và OS X (Ca cao) đều có API riêng để xử lý các cửa sổ, sự kiện và các nội dung khác của HĐH. Tôi chưa …
441 c++  c  linux  api  user-interface 






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.