TextView和Button卡在android studio中的蓝图的左上角

时间:2018-06-27 06:40:54

标签: android android-studio

enter image description here

当我在Android Studio中将TextView和Button添加到蓝图时,它会卡在蓝图的左上角。

6 个答案:

答案 0 :(得分:1)

这可能会有点晚,但是您需要将以下内容添加到styles.xml中:     

<!-- Base application theme. -->
<style name="AppTheme" parent="Base.Theme.AppCompat.Light.DarkActionBar">
    <!-- Customize your theme here. -->
    <item name="colorPrimary">@color/colorPrimary</item>
    <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
    <item name="colorAccent">@color/colorAccent</item>
</style>

</resources>

请注意Base.之前是父主题。

答案 1 :(得分:0)

使用ConstraintLayout时,您需要提供适当的约束。否则,请使用LinearLayout或RelativeLayout。

答案 2 :(得分:0)

是否存在构建问题和错误? 我在上传的图片中看不到任何东西,所以我想您的项目中存在一些问题。请检查gradle输出和系统输出以找到它。

答案 3 :(得分:0)

使用Android Studio中的设计器设置上下左右约束,然后再次进行测试。

或者像这样编辑您的XML文件 例如:

 <TextView
    android:id="@+id/test"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_marginEnd="8dp"
    android:layout_marginStart="8dp"
    android:layout_marginTop="8dp"
    android:text="test"
    android:padding="5dp"
    android:textColor="#FFCD00"
    android:textSize="15sp"
    android:textStyle="bold"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintTop_toTopOf="parent" />

请发布您的XML布局文件,以获取更多帮助。

答案 4 :(得分:0)

我遇到了同样的问题。单击“自动连接到父级”按钮(图标看起来像字母“ U”(磁铁符号)。它位于“设计”视图的左上方

答案 5 :(得分:0)

手机屏幕的用户界面上有一个类似螺丝钉的图标,点击它即可。 如果所有东西都在左上角,它会起作用。 感谢阅读