1

2 つの edittext ビューがあります。そのうちの 1 つは、タイトルが 1 行しかありません。しかし、もう一方はlinearlayoutを最後まで埋める必要がありますが、そうではありません。コードを更新したので、これはこのアプリの xml 全体です。誰かが間違っていることを見つけてくれることを願っています。このように形成したい部分は、addViewという名前のLinearLayout内の部分です。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/mainLayout"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" 
android:background="#ffffff">

<LinearLayout  
     xmlns:android="http://schemas.android.com/apk/res/android"
     android:orientation="horizontal"
     android:layout_width="fill_parent"
     android:layout_height="wrap_content"
>

    <Button 
        android:id="@+id/addButton"
        android:layout_height="wrap_content"
        android:layout_width="wrap_content"
        android:background="@drawable/addbuttonstyle"
        android:layout_weight="20"/>

    <ImageView
        android:id="@+id/titleView"
        android:layout_height="wrap_content"
        android:layout_width="wrap_content"
        android:background="@drawable/titleview"
        android:layout_weight="60"/>

    <Button 
        android:id="@+id/orderButton"
        android:layout_height="wrap_content"
        android:layout_width="wrap_content"
        android:background="@drawable/orderbuttonstyle"
        android:layout_weight="20"/>

</LinearLayout>  

<FrameLayout 
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
> 
    <LinearLayout 
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/addView"
        android:orientation="vertical"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        >

        <EditText 
            android:id="@+id/textBoxTitle"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:hint="note title"
            android:singleLine="true"

            />
         <EditText 
            android:id="@+id/textBoxContent"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:hint="content"
            />
    </LinearLayout>

    <LinearLayout
        xmlns:android="http://schemas.android.com/apk/res/android" 
        android:id="@+id/backgroundLayout"
        android:orientation="horizontal"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:background="@drawable/background"
    />

</FrameLayout>

4

3 に答える 3

1

だから私は何が間違っているかを見つけました。(textBoxContent ビューの) layout_height を 0dp に、(textBoxContent ビューの) layout_weight を 1 に設定する必要がありました。

于 2012-05-13T13:59:12.977 に答える
1

textBoxTitleの高さをに変更すると、次のwrap_contentように表示されます。

スクリーンショット

これはあなたが望んでいたものですか?またcontent、左上隅に表示する場合は、次の属性を使用します。

<EditText
    ...
    android:gravity="top"
    />
于 2012-05-12T22:17:06.773 に答える
0

最初のビューには android:layout_width="wrap_content" が必要です

于 2012-05-12T22:17:48.673 に答える