ฉันพยายามสร้างกริดวิวด้วยสองคอลัมน์ ฉันหมายถึงสองภาพต่อแถวเรียงกันเหมือนภาพนี้
แต่ภาพของฉันมีช่องว่างระหว่างกันเนื่องจากความจริงที่ว่ามันมีขนาดไม่เท่ากัน นี่คือสิ่งที่ฉันได้รับ
ในขณะที่คุณสามารถเห็นภาพแรกซ่อนตำนานซึ่งแสดงชื่อผู้ติดต่อและหมายเลขโทรศัพท์ และรูปภาพอื่นไม่ยืดออกอย่างถูกต้อง
นี่คือไฟล์GridView xml ของฉัน ขณะที่คุณสามารถดูcolumnWidth
การตั้งค่าเพื่อ200dp ฉันต้องการให้เป็นอัตโนมัติดังนั้นรูปภาพจะปรับขนาดอัตโนมัติสำหรับขนาดหน้าจอแต่ละขนาด
<?xml version="1.0" encoding="utf-8"?>
<GridView
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/gridViewContacts"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:numColumns="2"
android:columnWidth="200dp"
android:stretchMode="columnWidth"
android:gravity="center" />
และนี่คือไฟล์ item xml ซึ่งแสดงถึงแต่ละไอเท็มเอง
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<ImageView
android:id="@+id/imageViewContactIcon"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scaleType="fitXY" />
<LinearLayout
android:id="@+id/linearlayoutContactName"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:paddingLeft="5dp"
android:paddingTop="5dp"
android:paddingBottom="5dp"
android:background="#99000000"
android:layout_alignBottom="@+id/imageViewContactIcon">
<TextView
android:id="@+id/textViewContactName"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="#FFFFFF"
android:textStyle="bold"
android:textSize="15sp"
android:text="Lorem Ipsum" />
<TextView
android:id="@+id/textViewContactNumber"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="#FFFFFF"
android:layout_marginLeft="5dp"
android:focusable="true"
android:ellipsize="marquee"
android:marqueeRepeatLimit="marquee_forever"
android:textSize="10sp"
android:text="123456789" />
</LinearLayout>
</RelativeLayout>
ดังนั้นสิ่งที่ฉันต้องการคือการแสดงสองภาพต่อแถวและภาพอัตโนมัติปรับขนาดไม่ว่าขนาดหน้าจอ ฉันทำอะไรผิดในเลย์เอาต์ของฉัน
ขอบคุณ
scaleType
คุณสมบัติcenterCrop บน ImageView สิ่งที่ฉันต้องการเพื่อให้บรรลุคือวิธีที่จะทำให้ภาพอยู่เคียงข้างกันและปรับขนาดโดยอัตโนมัติสำหรับขนาดหน้าจอที่แตกต่างกัน