2 回答
TA贡献1831条经验 获得超10个赞
你可以只用RelativeLayout来修复你的视图
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">
<ImageView
android:id="@+id/imageView"
android:layout_width="33dp"
android:layout_height="27dp"
android:layout_marginStart="16dp"
android:layout_marginTop="16dp"
android:layout_alignParentStart="true"
app:srcCompat="@drawable/ic_round_close" />
<TextView
android:layout_marginTop="16dp"
android:id="@+id/imageView2"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:background="@drawable/timer"
android:layout_centerHorizontal="true"
android:text="15s"
android:textSize="20sp"
android:textColor="#3B3B3B"
android:textStyle="bold" />
<TextView
android:layout_alignParentEnd="true"
android:id="@+id/textView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="16dp"
android:layout_marginEnd="16dp"
android:gravity="center"
android:text="Score: 430"
android:textColor="#000"
android:textSize="18sp" />
</RelativeLayout>
TA贡献1810条经验 获得超4个赞
weightSum您可以通过使用以下方法来实现此目的
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:weightSum="1">
<ImageView
android:id="@+id/imageView"
android:layout_width="0dp"
android:layout_height="30dp"
android:layout_weight=".2"
app:srcCompat="@drawable/close_btn" />
<TextView
android:id="@+id/imageView2"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight=".4"
android:background="@drawable/timer"
android:gravity="center"
android:text="15s"
android:textColor="#3B3B3B"
android:textSize="20dp"
android:textStyle="bold" />
<TextView
android:id="@+id/textView"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight=".4"
android:gravity="center"
android:text="Score: 430"
android:textColor="#000"
android:textSize="18dp" />
</LinearLayout>
添加回答
举报