我做了一个背景,并在里面放了4个按钮的图片,然后创建视图并设置了背景。
<View
android:id="@+id/satbg"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="80dp"
android:background="@drawable/dizes"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="@+id/imageView6" />
在这里ss:https://i.postimg.cc/MKGqQQNt/gosa.png
然后我将按钮创建为“视图”,以使clickable。因此用户单击时已访问了该页面,但他们看不到该按钮,因为我将变为透明,他们只会看到bg。但是问题是要在不同的屏幕尺寸上更改尺寸和位置。我该如何使其保持静态。
Nexus 4.7 https://postimg.cc/DSscHwx5
Nexus 7.0 https://postimg.cc/sG7XyqbF
完整代码
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.baydogru.iddaatahminleri.Buy">
<ImageView
android:id="@+id/imageView6"
android:layout_width="0dp"
android:layout_height="0dp"
android:scaleType="fitXY"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.0"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_bias="1.0"
app:srcCompat="@drawable/arkaplan" />
<View
android:id="@+id/satbg"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="80dp"
android:background="@drawable/dizes"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="@+id/imageView6" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<LinearLayout
android:id="@+id/LinearLayout1"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:orientation="horizontal"
android:background="@android:color/transparent">
<View
android:id="@+id/TextView1"
android:layout_width="0dp"
android:layout_height="200dp"
android:layout_marginEnd="10dp"
android:layout_marginLeft="10dp"
android:layout_marginTop="155dp"
android:layout_weight="1"
android:background="#FF0000"
android:text="Text1" />
<View
android:id="@+id/TextView3"
android:layout_width="0dp"
android:layout_height="200dp"
android:layout_marginRight="10dp"
android:layout_marginStart="10dp"
android:layout_marginTop="155dp"
android:layout_weight="1"
android:background="#0000FF"
android:text="Text3" />
</LinearLayout>
<LinearLayout
android:id="@+id/LinearLayout2"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:background="@android:color/transparent"
android:orientation="horizontal"
>
<View
android:id="@+id/TextView4"
android:layout_width="0dp"
android:layout_height="200dp"
android:layout_marginEnd="10dp"
android:layout_marginLeft="10dp"
android:layout_marginTop="25dp"
android:layout_weight="1"
android:background="#FF0000"
android:text="Text1" />
<View
android:id="@+id/TextView5"
android:layout_width="0dp"
android:layout_height="200dp"
android:layout_marginRight="10dp"
android:layout_marginStart="10dp"
android:layout_marginTop="25dp"
android:layout_weight="1"
android:background="#0000FF"
android:text="Text3" />
</LinearLayout>
</LinearLayout>
</android.support.constraint.ConstraintLayout>