Android包含的布局显示在预览中,但不在模拟器上

时间:2019-01-19 05:32:46

标签: java android xml

所以,这是我要包含的布局:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal">

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/taskTimeSettingName"
            android:paddingStart="10dp"
            android:paddingTop="15dp"
            android:paddingBottom="15dp"
            android:layout_marginRight="200dp"
            android:textSize="16sp"
            android:paddingEnd="10dp"
            android:textColor="#7d7d7d"/>

        <ImageButton
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:background="@drawable/remove"
            android:layout_marginTop="14dp"
            android:layout_marginRight="5dp"
            android:backgroundTint="#7d7d7d" />

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:textSize="16sp"
            android:text="25"/>

        <ImageButton
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:background="@drawable/add"
            android:layout_marginTop="14dp"
            android:layout_marginStart="5dp"
            android:backgroundTint="#7d7d7d"/>

    </LinearLayout>

    <View
        android:layout_width="match_parent"
        android:layout_height="1dp"
        android:background="#dbdbdb"/>

</LinearLayout>

这是主要布局:

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
    xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent"
    android:layout_height="match_parent">

    <ScrollView
        android:layout_width="match_parent"
        android:layout_height="match_parent">

        <include layout="@layout/task_time_setting" android:id="@+id/taskTimeSetting" />

    </ScrollView>

</android.support.constraint.ConstraintLayout>

父级布局的活动:

package ro.nodomain.emil.tasks.activities;

import android.os.Bundle;
import android.support.annotation.Nullable;
import android.support.v7.app.AppCompatActivity;

public class SettingsActivity extends AppCompatActivity {
    @Override
    protected void onCreate(@Nullable Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
    }
}

我在此处包括的布局在检查器中显示,但我也无法在模拟器上显示它。我不认为我弄乱了match_parent属性,以便布局不会出现在屏幕上。我在网上找不到任何可以帮助我的东西。是什么原因造成的?

0 个答案:

没有答案