文本在可视区域之外

时间:2012-12-22 00:25:29

标签: android android-layout

在我看来,文字超出了屏幕,如下所示:

enter image description here

这是布局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中。这是我在选择元素时看到的。

enter image description here

即使在这里,容器显示超出显示范围。

有人可以告诉我这里我做错了吗?

谢谢!

更新1:添加了完整的布局。

更新2:在Eclipse中添加了布局快照。

1 个答案:

答案 0 :(得分:0)

您是否特别使用wrap_content作为TableLayoutTableRow s的宽度? 这是唯一可能导致此行为的事情。我认为你应该使用match_parent

(我没有测试过你的布局,但这是我唯一看错的地方)。