0

実際にうーん...説明してみましょう...私はAndroidアプリスターターのチュートリアルに従っていました.私たちは電話を使用し、灰色のメッセージの部分をクリックすると、灰色のメッセージが消えます....これをもう一度試してみましたが、デフォルトのメッセージは黒で、電話の 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 が原因かどうかは考えましたが、問題はないようです。

4

2 に答える 2

1

みたいですねhint。この行を追加

android:hint="@string/edit_percentage"

それ以外の

android:text="@string/edit_percentage"
于 2013-10-18T19:48:46.213 に答える
0

android:text属性を使用します。

<EditText android:id="@+id/edit_message"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="@string/edit_message" />
于 2013-10-18T19:50:06.480 に答える