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

Bố cục Android hiển thị các chế độ xem con ở các vị trí tương đối với nhau hoặc với chế độ xem chính.


4
Làm cách nào để lập trình đặt thuộc tính layout_align_parent_right của một Nút trong Bố cục tương đối?
Tôi có một bố cục tương đối mà tôi đang tạo lập trình: RelativeLayout layout = new RelativeLayout( this ); RelativeLayout.LayoutParams params = new RelativeLayout.LayoutParams(LayoutParams.FILL_PARENT, LayoutParams.WRAP_CONTENT); Bây giờ tôi có hai nút mà tôi muốn thêm vào trong bố cục tương đối này. Nhưng vấn đề là cả hai nút …

9
Làm cách nào để bố trí Lượt xem trong RelativeLayout theo chương trình?
Tôi đang cố gắng để đạt được các chương trình sau (chứ không phải khai báo qua XML): <RelativeLayout...> <TextView ... android:id="@+id/label1" /> <TextView ... android:id="@+id/label2" android:layout_below: "@id/label1" /> </RelativeLayout> Nói cách khác, làm cách nào để làm cho cái thứ hai TextViewxuất hiện bên dưới cái thứ nhất, nhưng …





3
Android RelativeLayout lập trình Set trung tâmInInararet
tôi có một RelativeLayout như thế này: <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="horizontal" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_marginTop="10dip"> <Button android:id="@+id/negativeButton" android:layout_width="wrap_content" android:layout_height="wrap_content" android:textSize="20dip" android:textColor="#ffffff" android:layout_alignParentLeft="true" android:background="@drawable/black_menu_button" android:layout_marginLeft="5dip" android:layout_centerVertical="true" android:layout_centerHorizontal="true"/> <Button android:id="@+id/positiveButton" android:layout_width="wrap_content" android:layout_height="wrap_content" android:textSize="20dip" android:textColor="#ffffff" android:layout_alignParentRight="true" android:background="@drawable/blue_menu_button" android:layout_marginRight="5dip" android:layout_centerVertical="true" android:layout_centerHorizontal="true"/> </RelativeLayout> Tôi muốn có thể thiết lập theo chương trình cho positiveButtonhiệu ứng tương tự …




9
Chiều dọc trung tâm RelativeLayout
Tôi muốn tạo một bố cục hàng danh sách. Bố cục này có chế độ xem hình ảnh ở ngoài cùng bên trái, chế độ xem văn bản ngay bên chế độ xem hình ảnh và chế độ xem hình ảnh ở ngoài cùng bên phải. Tôi muốn tất cả …

4
Tương đương với RelativeLayout trong Flutter
Có cách nào để triển khai một cái gì đó tương tự như những gì RelativeLayouttrên Android không? Đặc biệt tôi đang tìm kiếm một cái gì đó tương tự như centerInParent, layout_below:<layout_id>, layout_above:<layout_id>, vàalignParentLeft Để tham khảo thêm về RelativeLayout: https://developer.android.com/reference/android/widget/RelativeLayout.LayoutParams.html CHỈNH SỬA: đây là một ví dụ về …

8
Sự cố với RelativeLayout khi Chế độ hiển thị là View.GONE
Tôi đã nói RelativeLayoutnhư vậy: <RelativeLayout> <TextView1/> <TextView2/> // <-- View.VISIBLE OR View.GONE <TextView3/> <TextView4/> </RelativeLayout> Mỗi cái TextViewđược neo bên dưới cái trước TextViewvới android:layout_below. Vấn đề là TextView2 có thể có hoặc không ở đó (hoặc View.VISIBLEhoặc View.GONE); nếu đúng View.VISIBLE, thì tất cả đều ổn, nhưng nếu …

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.