实际上嗯...让我尝试解释一下...我正在关注 android app starters 的教程,并且使用此代码 EditText 部分将有一条默认消息,该消息设置在字符串中,但默认消息是灰色的,当我们使用手机并单击 EditText 部分,灰色消息将消失....我再次尝试这样做,但我得到的是默认消息是黑色的,当我单击手机上的 EditText 时,消息将保留而不是消失,这意味着我必须手动删除消息才能输入想要的内容。任何人都可以帮我一把吗?
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal" >
<EditText android:id="@+id/edit_message"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:hint="@string/edit_message" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/button_send"
android:onClick="sendMessage" />
</LinearLayout>
上面是我想要的,下面是我所拥有的,
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
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=".MainActivity" >
/*have a few more EditText, Buttons and TextView here but don't think it's relevant so didn't paste*/
<EditText
android:id="@+id/edit_percentage"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/editText1"
android:layout_alignParentBottom="true"
android:ems="10"
android:inputType="numberDecimal"
android:text="@string/edit_percentage" />
<Button
android:id="@+id/button3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignBottom="@+id/edit_percentage"
android:layout_alignRight="@+id/editText1"
android:text="@string/button3" />
</RelativeLayout>
我确实想过是否是因为 relativelayout 和 linearlayout 但似乎不是问题。