Android Studio не показывает предварительный просмотр дизайна, но приложение работает - PullRequest
0 голосов
/ 24 октября 2018

Я обновил свою андроид студию.В моем предварительном просмотре макета мой дизайн не отображается:

ПРИМЕЧАНИЕ. В одном или нескольких макетах отсутствуют атрибуты layout_width и layout_height, требуемые в большинстве макетов.

ИЛИ: автоматически добавлять все отсутствующие атрибуты.В приложении нет ошибок.Работает хорошо.Я удалил свою андроид студию, но возникла та же проблема.Во всех моих проектах возникает одна и та же проблема.

Я также обновил 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>

Ответы [ 2 ]

0 голосов
/ 24 октября 2018

Это иногда случается со мной.Чтобы это исправить, нужно проверить styles.xml из папки res и убедиться, что стиль AppTheme определен правильно.

Например, если я хочустиль приложения должен быть без панели действий, я использую его как AppTheme:

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

... и добавляю необходимые элементы, такие как colorPrimary и т. д.

Затем, после перестройки gradle, я обычно вижумой дизайн макета снова

0 голосов
/ 24 октября 2018

Одной из возможностей является то, что ваша тема меняется.Попробуйте изменить его на Материал -> Темный в режиме предварительного просмотра.

Ссылка на похожую тему:

Предварительный просмотр в Android Studio не отображается?версия 1.5.1

...