我正在使用ListView并尝试将第二行文本和图像完美地对齐,但不能正确对齐
我必须使用LinearLayout或相对布局正常,我只是遗漏了一些东西
必须看起来像这样
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal">
<TextView
android:layout_centerVertical="true"
android:text="text"
android:gravity="center"
android:id="@+id/textView1"
android:textColor="@color/colorWhite"
android:layout_marginStart="10dp"
android:layout_marginTop="5dp"
android:layout_marginBottom="5dp"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="15sp"
android:textStyle="bold" />
<ImageView
android:layout_centerVertical="true"
android:gravity="center"
android:layout_below="@+id/textView1"
android:src="@drawable/image_button_a"
android:id="@+id/imageView1"
android:layout_width="35dp"
android:layout_height="35dp"
android:scaleType="fitXY"
android:adjustViewBounds="true"
android:layout_marginStart="4dp"
android:layout_marginTop="5dp"
android:layout_marginBottom="5dp"
android:layout_marginLeft="4dp"
android:layout_marginRight="4dp" />
<TextView
android:layout_centerVertical="true"
android:gravity="center"
android:text="text"
android:layout_toRightOf="@+id/imageView1"
android:layout_below="@+id/textView1"
android:id="@+id/textView2"
android:textColor="@color/colorWhite"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="4dp"
android:layout_marginTop="5dp"
android:layout_marginBottom="5dp"
android:layout_marginLeft="4dp"
android:layout_marginRight="4dp"
android:textSize="15sp"
android:textStyle="bold" />
<ImageView
android:gravity="center"
android:id="@+id/imageView2"
android:src="@drawable/image_button_a"
android:layout_toRightOf="@+id/textView2"
android:layout_below="@+id/textView1"
android:layout_width="35dp"
android:layout_height="35dp"
android:scaleType="fitXY"
android:adjustViewBounds="true"
android:layout_marginStart="4dp"
android:layout_marginTop="5dp"
android:layout_marginBottom="5dp"
android:layout_marginLeft="4dp"
android:layout_marginRight="4dp"/>
<TextView
android:text="text"
android:id="@+id/textView3"
android:layout_toRightOf="@+id/imageView2"
android:layout_below="@+id/textView1"
android:textColor="@color/colorWhite"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="4dp"
android:layout_marginTop="5dp"
android:layout_marginBottom="5dp"
android:layout_marginLeft="4dp"
android:layout_marginRight="4dp"
android:textSize="15sp"
android:textStyle="bold" />
</RelativeLayout>
答案 0 :(得分:0)
一种方法:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/title_textview"/>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
>
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
/>
<TextView
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:gravity="center"/>
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
/>
<TextView
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:gravity="center"/>
</LinearLayout>
</LinearLayout>
您可能希望通过定义ImageView的宽度和高度来更多地控制布局,并使用特定大小的资源来确保布局在任何设备上看起来都很好。
答案 1 :(得分:0)
试试这个: -
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<TextView
android:text="text"
android:id="@+id/textView1"
android:textColor="@color/colorWhite"
android:layout_marginStart="10dp"
android:layout_marginTop="5dp"
android:layout_marginBottom="5dp"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="15sp"
android:textStyle="bold" />
<LinearLayout
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<ImageView
android:gravity="center"
android:src="@drawable/image_button_a"
android:id="@+id/imageView1"
android:layout_width="35dp"
android:layout_height="35dp"
android:scaleType="fitXY"
android:adjustViewBounds="true"
android:layout_marginStart="4dp"
android:layout_marginTop="5dp"
android:layout_marginBottom="5dp"
android:layout_marginLeft="4dp"
android:layout_marginRight="4dp" />
<TextView
android:gravity="center"
android:text="text"
android:id="@+id/textView2"
android:textColor="@color/colorWhite"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_marginStart="4dp"
android:layout_marginTop="5dp"
android:layout_marginBottom="5dp"
android:layout_marginLeft="4dp"
android:layout_marginRight="4dp"
android:textSize="15sp"
android:textStyle="bold" />
<ImageView
android:id="@+id/imageView2"
android:src="@drawable/image_button_a"
android:layout_width="35dp"
android:layout_height="35dp"
android:scaleType="fitXY"
android:adjustViewBounds="true"
android:layout_marginStart="4dp"
android:layout_marginTop="5dp"
android:layout_marginBottom="5dp"
android:layout_marginLeft="4dp"
android:layout_marginRight="4dp" />
<TextView
android:text="text"
android:gravity="center"
android:id="@+id/textView3"
android:textColor="@color/colorWhite"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_marginStart="4dp"
android:layout_marginTop="5dp"
android:layout_marginBottom="5dp"
android:layout_marginLeft="4dp"
android:layout_marginRight="4dp"
android:textSize="15sp"
android:textStyle="bold" />
</LinearLayout>