0
每次呈現問題我添加小工具或東西,下面例外總是發生,所以我甚至不能運行我的項目。什麼導致這個問題?解決辦法是什麼?我對Android Studio很陌生,我希望你們能幫助我。你的每一個回答將是我的榮幸。謝謝!Android Studio中2.2.3
這裏是我的Layout.xml
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/activity_main"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context="com.example.leeroyld.testproject.MainActivity">
<Button
android:text="@string/LoginButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/button"
android:layout_marginBottom="79dp"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"
android:background="@android:color/background_dark"
android:backgroundTint="@android:drawable/bottom_bar"
android:textColor="@android:color/background_light" />
<TextView
android:text="@string/LoginLabel"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/EmailDisplay"
android:textSize="24sp"
android:layout_below="@+id/textView"
android:layout_alignParentStart="true"
android:layout_marginTop="36dp" />
<EditText
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:inputType="textPassword"
android:ems="10"
android:id="@+id/PasswordInput"
tools:ignore="LabelFor"
android:layout_marginBottom="42dp"
android:layout_above="@+id/button"
android:layout_centerHorizontal="true"
android:background="?attr/actionModeBackground" />
<TextView
android:text="@string/PasswordLabel"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/PasswordDisplay"
android:textSize="24sp"
android:layout_centerVertical="true"
android:layout_alignParentStart="true" />
<TextView
android:text="@string/TextView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/textView"
android:textSize="24sp"
android:layout_marginTop="31dp"
android:background="@android:drawable/button_onoff_indicator_on"
android:backgroundTint="@android:drawable/alert_light_frame"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true" />
<EditText
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:inputType="textEmailAddress"
android:ems="10"
android:id="@+id/EmailInput"
tools:ignore="LabelFor"
android:layout_marginTop="24dp"
android:background="?attr/actionModeBackground"
android:layout_below="@+id/EmailDisplay"
android:layout_alignStart="@+id/PasswordInput" />
</RelativeLayout>
請發佈您的佈局。 –
我剛更新了它。希望你能看到它 –
NO。佈局文件。切換到文本選項卡並從那裏粘貼代碼。 –