我只是从android.com的Build your first app教程开始,但是由于某种原因,设计视图没有显示我拖放到它的任何内容。我尝试创建按钮,文本,纯文本等,都没有错误,但是,只有在运行应用程序时才能看到它。 我想念什么?
在Ubuntu 18.04.1 LTS上运行Android Studio 3.1.4。
这是我第一次使用它,我在发布之前搜索了类似的问题,仅发现与我的问题不太相似的问题/答案对您有所帮助。我尝试重建并无效化缓存/重新启动,但无济于事。
以下是一些小贴士:
最后一个是activity_main.xml:
<?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:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<TextView
android:id="@+id/message"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="@dimen/activity_horizontal_margin"
android:layout_marginStart="@dimen/activity_horizontal_margin"
android:layout_marginTop="@dimen/activity_vertical_margin"
android:text="@string/title_home"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<android.support.design.widget.BottomNavigationView
android:id="@+id/navigation"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginEnd="0dp"
android:layout_marginStart="0dp"
android:background="?android:attr/windowBackground"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:menu="@menu/navigation" />
<EditText
android:id="@+id/editText"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:ems="10"
android:inputType="textPersonName"
android:text="KoDy Abbott"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.5"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
</android.support.constraint.ConstraintLayout>
如果您需要其他帮助回答我的问题,请告诉我。谢谢高级代表,希望这是我忽略的简单事情,但在这一点上,我可以更轻松地询问然后再敲几个小时.....
答案 0 :(得分:0)
您的项目中没有错误,但最近更新的支持库中有一些错误
将支持库版本更改为28.0.0-alpha1,它将全部正常工作
implementation 'com.android.support:appcompat-v7:28.0.0-alpha1'
implementation 'com.android.support:design:28.0.0-alpha1'
答案 1 :(得分:0)
其他解决方案是您可以在左上方找到图像按钮。单击它,您可以找到一个名为“强制刷新布局”的选项,单击它,您的问题将得到解决。