Дизайн и вывод совершенно разные в Android Studio - PullRequest
0 голосов
/ 29 сентября 2018

Когда я запускаю демонстрационный проект, он просто показывает имя TextView.Что я должен делать?Любое решение?Ожидание:
Expectation

Реальность:

Reality

1 Ответ

0 голосов
/ 30 сентября 2018

попробуйте изменить свой (макет из android.support.constraint.ConstraintLayout)

на (RelativeLayout)

и изменить EditText, а Button и TextView зависят от RelativeLayout

попробуйте этот код, который я делаю, если это работает нормально, измените атрибут для вашего случая

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent" android:layout_height="match_parent"
android:background="@drawable/"
android:padding="80dp">

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_alignParentStart="true"
    android:layout_alignParentTop="true"
    android:orientation="vertical">

    <EditText
        android:id="@+id/editText"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:ems="10"
        android:inputType="textPersonName"
        android:text="Name" />

    <EditText
        android:id="@+id/editText2"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:ems="10"
        android:inputType="textPersonName"
        android:text="Name" />

    <Button
        android:id="@+id/button"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="Button" />

    <TextView
        android:id="@+id/textView8"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:gravity="center"
        android:text="TextView" />
</LinearLayout>
</RelativeLayout>
...