1

私の見解では、テキストは次のように画面を超えて伸びています。

ここに画像の説明を入力してください

レイアウトxmlは次のとおりです。

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    android:padding="5dp" >
    <TextView
        android:id="@+id/tvBasicProfileProjectName"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/double_dash"
        android:textAppearance="?android:attr/textAppearanceLarge" />
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="@color/grey"
        android:orientation="horizontal"
        android:weightSum="2" >
        <ImageView
            android:id="@+id/imageView1"
            android:layout_width="200dp"
            android:layout_height="150dp"
            android:contentDescription="@string/image_holder"
            android:src="@drawable/nature444photo" />
        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="vertical"
            android:paddingLeft="2dp" >
            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="@string/label_basic_profile_project_status"
                android:textStyle="bold" />
            <TextView
                android:id="@+id/tv_basicprofile_projectstatus"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="@string/double_dash" />
            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="@string/label_basic_profile_project_type"
                android:textStyle="bold" />
            <TextView
                android:id="@+id/tv_basicprofile_projecttype"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="@string/double_dash" />
            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="@string/label_basic_profile_project_contact"
                android:textStyle="bold" />
            <TextView
                android:id="@+id/tv_basicprofile_projectcontact"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="@string/double_dash" />
        </LinearLayout>
    </LinearLayout>
    <ScrollView
        android:layout_width="fill_parent"
        android:layout_height="wrap_content" >
        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="vertical" >
            <TextView
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:background="@color/nature_green_header"
                android:padding="3dp"
                android:text="@string/label_project_relationships"
                android:textColor="@color/white"
                android:textStyle="bold" />
            <TableLayout
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:paddingBottom="20dp"
                android:paddingTop="5dp" >
                <TableRow
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:paddingBottom="2dp" >
                    <TextView
                        android:layout_width="150dp"
                        android:layout_height="wrap_content"
                        android:background="@color/nature_green_header"
                        android:padding="3dp"
                        android:text="@string/label_related_global_priorities"
                        android:textColor="@color/white"
                        android:textStyle="bold" />
                    <TextView
                        android:id="@+id/tv_basicprofile_rel_global_priorities"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:padding="3dp"
                        android:text="@string/double_dash" />
                </TableRow>
                <TableRow
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:paddingBottom="2dp" >
                    <TextView
                        android:layout_width="150dp"
                        android:layout_height="wrap_content"
                        android:background="@color/nature_green_header"
                        android:padding="3dp"
                        android:text="@string/label_related_regional_priority_strategies"
                        android:textColor="@color/white"
                        android:textStyle="bold" />
                    <TextView
                        android:id="@+id/tv_basicprofile_related_regional_priority_strategies"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:padding="3dp"
                        android:text="@string/double_dash" />
                </TableRow>
                <TableRow
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:paddingBottom="2dp" >
                    <TextView
                        android:layout_width="150dp"
                        android:layout_height="wrap_content"
                        android:background="@color/nature_green_header"
                        android:padding="3dp"
                        android:text="@string/label_related_whole_system_priorities"
                        android:textColor="@color/white"
                        android:textStyle="bold" />
                    <TextView
                        android:id="@+id/tv_basicprofile_related_whole_system_priorities"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:padding="3dp"
                        android:text="@string/double_dash" />
                </TableRow>
                <TableRow
                    android:layout_width="wrap_content"
                    android:layout_height="match_parent"
                    android:paddingBottom="2dp" >
                    <TextView
                        android:layout_width="150dp"
                        android:layout_height="wrap_content"
                        android:background="@color/nature_green_header"
                        android:padding="3dp"
                        android:text="@string/label_related_demonstration_priorities"
                        android:textColor="@color/white"
                        android:textStyle="bold" />
                    <TextView
                        android:id="@+id/tv_basicprofile_related_demonstration_priorities"
                        android:layout_width="150dp"
                        android:layout_height="wrap_content"
                        android:padding="3dp"
                        android:text="@string/double_dash" />
                </TableRow>
            </TableLayout>
            <TextView
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_weight="1"
                android:background="@color/nature_green_header"
                android:padding="3dp"
                android:text="@string/label_geographic_whole_system"
                android:textColor="@color/white"
                android:textStyle="bold" />
            <TextView
                android:id="@+id/tv_basicprofile_geographic_whole_system"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_weight="2"
                android:padding="3dp"
                android:text="@string/double_dash" />
            <TextView
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:background="@color/nature_green_header"
                android:padding="3dp"
                android:text="@string/label_project_description"
                android:textColor="@color/white"
                android:textStyle="bold" />
            <TextView
                android:id="@+id/tv_basicprofile_project_description"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:padding="3dp"
                android:text="@string/double_dash" />
            <TextView
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:background="@color/nature_green_header"
                android:padding="3dp"
                android:text="@string/label_programs"
                android:textColor="@color/white"
                android:textStyle="bold" />
            <TextView
                android:id="@+id/tv_basicprofile_programs"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:padding="3dp"
                android:text="@string/double_dash" />
            <TextView
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:background="@color/nature_green_header"
                android:padding="3dp"
                android:text="@string/label_tnc_region"
                android:textColor="@color/white"
                android:textStyle="bold" />
            <TextView
                android:id="@+id/tv_basicprofile_tnc_region"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:padding="3dp"
                android:text="@string/double_dash" />
            <TextView
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:background="@color/nature_green_header"
                android:padding="3dp"
                android:text="@string/label_countries"
                android:textColor="@color/white"
                android:textStyle="bold" />
            <TextView
                android:id="@+id/tv_basicprofile_countries"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:padding="3dp"
                android:text="@string/double_dash" />
            <TextView
                android:id="@+id/tv_basicprofile_modified"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:gravity="center"
                android:padding="3dp"
                android:text="@string/double_dash"
                android:textAppearance="?android:attr/textAppearanceSmall" />
        </LinearLayout>
    </ScrollView>
</LinearLayout>

そして、Eclipse内。これは、要素を選択したときに表示されるものです。

ここに画像の説明を入力してください

ここでも、コンテナは表示を超えているように見えます。

誰かが私がここで間違っていることを教えてもらえますか?

ありがとう!

更新1:完全なレイアウトを追加しました。

更新2:Eclipse内にレイアウトのスナップショットを追加しました。

4

1 に答える 1

0

とsのwrap_content幅に使用した特別な理由はありますか?これは、この動作を引き起こす可能性がある唯一のものです。私はあなたが使うべきだと思います。TableLayoutTableRowmatch_parent

(私はあなたのレイアウトをテストしていませんが、それが私に間違っているように見える唯一のものです)。

于 2012-12-22T19:49:14.700 に答える