Android上的某些设备上缺少按钮

时间:2017-10-22 22:48:45

标签: java android android-layout button

我遇到了丢失不同设备中的按钮等问题。 在Android 5.1和7.0按钮"添加"是可见的,但在Android 7.1上它消失了。但按钮" all_lenta"在所有设备上都可见。 我无法理解,为什么会发生...

第一个布局用"添加"按钮:

<RelativeLayout 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"
    android:background="@color/light_blue"
    android:orientation="vertical"
    android:clickable="true"
    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintHorizontal_bias="1.0"
    app:layout_constraintLeft_toLeftOf="parent"
    app:layout_constraintRight_toRightOf="parent"
    app:layout_constraintTop_toTopOf="parent"
    app:layout_constraintVertical_bias="0.0">

    <Button
        android:id="@+id/add_post"
        android:layout_width="150dp"
        android:layout_height="40dp"
        android:background="@drawable/add"
        android:layout_below="@id/header"
        android:layout_marginTop="23dp"
        android:layout_marginLeft="23dp"/>
</RelativeLayout>

使用&#34; all_lenta&#34;的第二个布局按钮:

<RelativeLayout 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.example.delya.achieverdel.ProfileActivity"
    android:background="@color/light_blue"
    android:orientation="vertical"
    android:clickable="true"
    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintHorizontal_bias="1.0"
    app:layout_constraintLeft_toLeftOf="parent"
    app:layout_constraintRight_toRightOf="parent"
    app:layout_constraintTop_toTopOf="parent"
    app:layout_constraintVertical_bias="0.0">

    <Button
        android:id="@+id/all_lenta"
        android:layout_width="80dp"
        android:layout_height="40dp"
        android:background="@drawable/all_lenta"
        android:layout_below="@id/header"
        android:layout_marginTop="23dp"
        android:layout_marginLeft="23dp"/>

</RelativeLayout>

1 个答案:

答案 0 :(得分:0)

从两个xmls中删除app:constraint ...