我的按钮是在android布局中的文本?

时间:2017-08-28 07:50:11

标签: android android-layout

对不起,我猜是因为noob错误而杀了你。我刚开始按照不同AS版本的教程,教程启动android开发。我输入了教师的内容,但最终结果并不相同。

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:layout_width="match_parent"
android:layout_height="match_parent"
android:minHeight="229dp"
android:minWidth="400dp"
tools:context="com.rjrenegade.myfirstexampleapp.MainActivity">

<TextView
    android:id="@+id/textView2"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Rj is awesome!"
    android:textColor="@color/colorAccent"
    android:textSize="30sp"
    tools:layout_editor_absoluteX="20dp"
    tools:layout_editor_absoluteY="30dp" />

<ToggleButton
    android:id="@+id/toggleButton"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="ToggleButton"
    tools:layout_editor_absoluteX="-57dp"
    tools:layout_editor_absoluteY="-72dp" />

<Button
    android:id="@+id/button"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:onClick="clickFunction"
    android:text="I agree"
    tools:layout_editor_absoluteX="20dp"
    tools:layout_editor_absoluteY="88dp" />

</android.support.constraint.ConstraintLayout>

我和教师的代码重复了几次,但它完全相同。结果: http://imgur.com/a/kZPIG

Edit1 :从标记为重复的链接上我理解必须有一些称为约束的东西。现在我如何在我的编辑器中将它们添加到此应用程序中,有人可以建议吗?文件似乎对我来说太神秘了。

0 个答案:

没有答案