1

こんにちは皆さん、ここで助けが必要です。

editTextが表示されない理由がわかりません。私がとても困惑しているのは、私の日食のアウトラインでeditTextを見ることができるということです。

これが私のコードです:

activity_main.xml

<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" >

<Button
    android:id="@+id/buttonTESTER1"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:text="@string/btnTester1_text" 
/>

<EditText
    android:id="@+id/editTextTESTER1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:hint="@string/editTextHINT1"
    android:inputType="text"
/>

</LinearLayout>

strings.xml

<resources>

<string name="app_name">Android Tutorial</string>
<string name="hello_world">Hello world!</string>
<string name="menu_settings">Settings</string>
<string name="title_activity_main">MainActivity</string>
<string name="btnTester1_text">BUTTON TESTER</string>
<string name="editTextTester1_text">BUTTON TESTER</string>
<string name="editTextHINT1">Test</string>

</resources>

アンドロイドへの絶対的な初心者ですので、しばらくお待ちください。私が間違っていることを私に指摘してください。

4

3 に答える 3

4

android:layout_width="fill_parent"ボタンと画面の全幅を渡したためです 。のandroid:orientation="horizontal"プロパティLinearLayoutを垂直またはandroid:layout_width="fill_parent"に変更しますwrap_content

于 2012-08-10T05:31:55.827 に答える
0

これを試して。

LinearLayoutの向きを「垂直」に変更します。次に、それらは垂直に配置されます。これは、ボタンにlayout_width = "fill_parent"を設定しているために発生します。これにより、親全体が塗りつぶされ、EditTextボックスが表示されなくなります。

于 2012-08-10T05:32:05.670 に答える
0

正確に何をしたいのか考えさせてください。

 <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="vertical" >

    <LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content" 
    android:orientation="horizontal" >
    <Button
        android:id="@+id/buttonTESTER1"
        android:layout_width="100dp"
        android:layout_height="wrap_content"
        android:text="@string/btnTester1_text" 
    />

    <EditText
        android:id="@+id/editTextTESTER1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:hint="@string/editTextHINT1"
        android:inputType="text"
    />

    </LinearLayout>
    </LinearLayout>
于 2012-08-10T05:45:28.753 に答える