Android Studio未显示设计预览,但应用程序正在运行

时间:2018-10-24 06:28:15

标签: android xml android-studio layout

我已经更新了我的android studio。在我的布局预览中,我的设计未显示

注意:一种或多种布局缺少大多数布局中所需的layout_widthlayout_height属性。

OR:自动添加所有缺少的属性。应用程序中没有错误。运行良好。我已经卸载了Android Studio,但发生了同样的问题。在我所有的项目中都出现相同的问题。

我也更新了SDK。

  

这是layout.xml

<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:local="http://schemas.android.com/apk/res-auto"
    android:id="@+id/coordinate_layout_sheet"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

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

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

            <android.support.v7.widget.Toolbar
                android:id="@+id/toolbar_series"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:background="@color/colorPrimaryDark"
                local:popupTheme="@style/ThemeOverlay.AppCompat.Light"
                local:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">

            </android.support.v7.widget.Toolbar>

            <android.support.v4.widget.NestedScrollView
                android:layout_width="match_parent"
                android:layout_height="match_parent">

                <LinearLayout
                    android:layout_width="match_parent"
                    android:layout_height="match_parent"
                    android:orientation="vertical">
                </LinearLayout>
            </android.support.v4.widget.NestedScrollView>

        </LinearLayout>

        <RelativeLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:visibility="gone">

            <ProgressBar
                android:id="@+id/pb_product"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_centerInParent="true"
                android:visibility="visible" />

            <TextView
                android:id="@+id/tv_no_record"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_centerInParent="true"
                android:gravity="center"
                android:text="No record Found"
                android:textSize="18sp"
                android:visibility="visible" />
        </RelativeLayout>

        <!-- <android.support.v4.widget.NestedScrollView
             android:id="@+id/bottom_sheet_registration"
             android:layout_width="match_parent"
             android:layout_height="wrap_content"
             android:background="#EEEEEE"
             android:clipToPadding="true"
             android:visibility="gone"
             app:layout_behavior="android.support.design.widget.BottomSheetBehavior">


             <LinearLayout
                 android:layout_width="match_parent"
                 android:layout_height="wrap_content"
                 android:layout_marginBottom="14dp"
                 android:orientation="vertical">

                 <include layout="@layout/bottomsheet" />
             </LinearLayout>
         </android.support.v4.widget.NestedScrollView>-->

        <View
            android:layout_width="match_parent"
            android:layout_height="60dp" />

        <RelativeLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_alignParentBottom="true">

            <Button
                android:id="@+id/btn_add_tocart"
                style="@style/Base.Widget.AppCompat.Button.Colored"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_gravity="bottom"
                android:layout_weight="1"
                android:backgroundTint="#863029"
                android:text="Add To Cart"
                android:textAllCaps="false" />

        </RelativeLayout>
    </RelativeLayout>
</android.support.design.widget.CoordinatorLayout>

3 个答案:

答案 0 :(得分:2)

这有时发生在我身上。我要解决的问题是从res文件夹中检查 styles.xml 并检查样式 AppTheme 是否正确定义。

例如,如果我希望我的应用样式没有操作栏,则可以将其用作AppTheme:

<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">

... 并添加必填项,例如colorPrimary等。

然后,在重新构建gradle之后,我通常可以再次看到我的布局设计

答案 1 :(得分:0)

重建您的项目。 脚步 1:转到“构建”,然后清理“项目”。 2:转到“构建”,然后“重建”项目。

答案 2 :(得分:0)

一种可能性是您的主题发生了变化。尝试在“预览”视图中将其更改为“材质”->“暗”。

链接到类似主题:

android studio preview not displaying? version 1.5.1