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.



5
Android - Chế độ xem văn bản ở giữa theo chiều ngang trong LinearLayout
Tôi có bố cục cơ bản sau <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent"> <LinearLayout android:orientation="horizontal" android:layout_width="fill_parent" android:layout_height="wrap_content" android:background="@drawable/title_bar_background"> <TextView android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_gravity="center_horizontal" android:textAppearance="?android:attr/textAppearanceLarge" android:padding="10dp" android:text="HELLO WORLD" /> </LinearLayout> <LinearLayout> Có vẻ như xml là đúng nhưng văn bản được căn chỉnh ở bên trái. Chế độ xem văn bản chiếm toàn …

7
Làm cách nào để hiển thị dấu chấm lửng trên TextView nếu nó lớn hơn 1 dòng?
Tôi có Bố cục sau không hoạt động: <LinearLayout android:orientation="horizontal" android:layout_width="match_parent" android:id="@+id/experienceLayout" android:background="#ffffff" android:layout_height="match_parent" android:paddingLeft="6dp" android:paddingRight="6dp" android:paddingBottom="6dp" android:paddingTop="6dp"> <TextView android:layout_weight="1" android:id="@+id/experienceLabel" android:text="Experience" android:layout_height="wrap_content" android:textColor="#000000" android:layout_width="wrap_content" android:textStyle="bold"> </TextView> <TextView android:id="@+id/experienceTextView" android:text="TextView" android:layout_height="wrap_content" android:textColor="#000000" android:layout_width="wrap_content" android:ellipsize="end" android:lines="1" android:maxLines="1" android:singleLine="true" android:fadeScrollbars="false"> </TextView> </LinearLayout>

20
Làm cách nào để nhóm RadioButton từ các LinearLayouts khác nhau?
Tôi đã tự hỏi liệu có thể nhóm từng đĩa đơn RadioButtontrong một duy nhất RadioGroup duy trì cùng một cấu trúc. Cấu trúc của tôi trông như thế này: LinearLayout_main LinearLayout_1 RadioButton1 LinearLayout_2 RadioButton2 LinearLayout_3 RadioButton3 Như bạn có thể thấy, bây giờ mỗi người RadioButtonlà một đứa trẻ …

11
Làm cách nào để thêm dải phân cách (dọc) vào LinearLayout ngang?
Tôi đang cố gắng thêm một dải phân cách vào một bố cục tuyến tính ngang nhưng chẳng đi đến đâu. Dải phân cách không hiển thị. Tôi là một người mới hoàn toàn với Android. Đây là XML bố cục của tôi: <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" tools:context=".MainActivity" > …

6
Hướng bố trí trong mã
Tôi có mã này trong ứng dụng của mình: LinearLayout.LayoutParams params = new LinearLayout.LayoutParams(WRAP_CONTENT, WRAP_CONTENT); và tôi chỉ muốn đặt hướng của LinearLayout thành thẳng đứng. Tương đương trong XML là: android:orientation="vertical" Làm cách nào tôi có thể làm điều đó trong mã mà không có XML?

13
Làm thế nào để hiển thị bóng xung quanh tuyến tính trong Android?
Làm cách nào để hiển thị bóng đổ cho bố cục tuyến tính của tôi. Tôi muốn nền tròn màu trắng với bóng xung quanh tuyến tính. Tôi đã làm điều này cho đến nay. <LinearLayout android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_margin="10dp" android:background="@xml/rounded_rect_shape" android:orientation="vertical" android:padding="10dp"> <-- My buttons, textviews, Imageviews go here --> …
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.