Bạn có thể cho tôi một ví dụ rất đơn giản về việc thêm chế độ xem con theo chương trình vào RelativeLayout
tại một vị trí nhất định không?Cách thêm chế độ xem theo chương trình vào RelativeLayout?
Ví dụ, để phản ánh XML sau:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:layout_marginLeft="107dp"
android:layout_marginTop="103dp"
android:text="Large Text"
android:textAppearance="?android:attr/textAppearanceLarge" />
Tôi không hiểu làm thế nào để tạo ra một RelativeLayout.LayoutParams
dụ thích hợp.
Xin lỗi, cùng một câu hỏi: bạn đã tìm hiểu về hàm tạo 'RelativeLayout.LayoutParams' mà không có tham số' Context' làm thông số đầu tiên ở đâu? –
@SuzanCioc Xem chỉnh sửa ở trên – JRaymond
Ah, xin lỗi đã suy nghĩ chiều rộng và chiều cao phải là giá trị chính xác. –