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

LinearLayout là một trong những bố cục cơ bản trong Android. Nó sắp xếp các con của nó lần lượt theo chiều ngang hoặc chiều dọc.

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>

18
Bố cục tuyến tính và trọng lượng trong Android
Tôi luôn đọc về giá trị trọng lượng vui nhộn này trong các tài liệu Android. Bây giờ tôi muốn thử nó lần đầu tiên nhưng nó không hoạt động. Theo tôi hiểu từ các tài liệu bố trí này: <LinearLayout android:layout_width="fill_parent" android:layout_height="wrap_content" android:orientation="horizontal"> <Button android:text="Register" android:id="@+id/register" android:layout_width="wrap_content" android:layout_height="wrap_content" android:padding="10dip" …




4
Làm cách nào để tôi sử dụng một hợp chất có thể vẽ thay vì một tuyến tính có chứa ImageView và TextView
Chạy công cụ Lint mới chống lại mã của tôi. Nó đã đưa ra rất nhiều gợi ý hay, nhưng cái này tôi không thể hiểu được. Thẻ này và con của nó có thể được thay thế bằng một và một hợp chất có thể rút ra Vấn đề: …







9
Đặt các nút ở dưới cùng của màn hình với linearLayout?
Tôi có đoạn mã sau, làm cách nào để tạo 3 nút ở phía dưới? <TextView android:id="@+id/textView1" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginTop="60dp" android:gravity="center" android:text="@string/observer" android:textAppearance="?android:attr/textAppearanceLarge" tools:context=".asdf" android:weight="1" /> <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="vertical" > <Button android:id="@+id/button1" style="?android:attr/buttonStyleSmall" android:layout_width="145dp" android:layout_height="wrap_content" android:layout_gravity="center_horizontal|center" android:text="1" /> <Button android:id="@+id/button2" style="?android:attr/buttonStyleSmall" android:layout_width="145dp" android:layout_height="wrap_content" android:layout_gravity="center_horizontal|center" android:text="2" /> <Button android:id="@+id/button3" style="?android:attr/buttonStyleSmall" …


8
Cách thêm TextView vào linearLayout trong Android
Tôi đang cố gắng thêm TextViewsvào bố cục xml do mã xác định. Tôi có một tờ xml, trong đó có rất nhiều Viewsđịnh nghĩa. Nhưng tôi phải thêm một số khung nhìn trong mã, vì vậy hãy tạo một LinearLayouttrong xml-sheet: <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="wrap_content" android:id="@+id/info" android:layout_height="wrap_content" android:orientation="vertical"> </LinearLayout> 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.