表格布局问题

发布于 2024-12-03 12:33:06 字数 4083 浏览 0 评论 0原文

 <?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="horizontal" android:layout_width="fill_parent"
    android:layout_height="fill_parent" android:background="@null">

    <ImageView android:layout_width="70dip"
        android:layout_height="wrap_content" android:layout_marginLeft="10dip"
        android:src="@drawable/photo_profile" android:id="@+id/profil_image"
        android:layout_gravity="center" android:layout_marginRight="10dip" />
        <TableLayout android:layout_width="wrap_content"
        android:layout_height="wrap_content" android:layout_marginLeft="15dip">
            <TableRow>
                <TextView android:layout_width="wrap_content" android:text="@string/experience"
                    android:layout_height="wrap_content" android:textStyle="bold"
                    android:textColor="@android:color/black" android:textSize="16sp" />
                <TextView android:id="@+id/profil_experience"
                    android:layout_width="wrap_content" android:layout_height="wrap_content"
                    android:textColor="@android:color/black" android:textSize="16sp" />
            </TableRow>
            <TableRow>
                <TextView android:layout_width="wrap_content" android:text="@string/secteur"
                    android:layout_height="wrap_content" android:textStyle="bold"
                    android:textColor="@android:color/black" android:textSize="16sp" />
                <TextView android:id="@+id/profil_secteur"
                    android:layout_width="wrap_content" android:layout_height="wrap_content"
                    android:textColor="@android:color/black" android:textSize="16sp" />
            </TableRow>
            <TableRow>
                <TextView android:layout_width="wrap_content" android:text="@string/lieu"
                    android:layout_height="wrap_content" android:textStyle="bold"
                    android:textColor="@android:color/black" android:textSize="16sp" />
                <TextView android:id="@+id/profil_lieu"
                    android:layout_width="wrap_content" android:layout_height="wrap_content"
                      android:singleLine="false"
                    android:textColor="@android:color/black" android:textSize="16sp" />
            </TableRow>
            <TableRow>
                <TextView android:layout_width="wrap_content" android:text="@string/niveau_etude"
                    android:layout_height="wrap_content" android:textStyle="bold"
                    android:textColor="@android:color/black" android:textSize="16sp" />
                <TextView android:id="@+id/profil_niveau"
                    android:layout_width="wrap_content" android:layout_height="wrap_content"
                    android:textColor="@android:color/black" android:textSize="16sp" />
            </TableRow>
            <TableRow>
                <TextView android:layout_width="wrap_content" android:text="@string/entreprise"
                    android:layout_height="wrap_content" android:textStyle="bold"
                    android:textColor="@android:color/black" android:textSize="16sp" />
                <TextView android:id="@+id/profil_societe"
                    android:layout_width="wrap_content" android:layout_height="wrap_content"
                    android:textColor="@android:color/black" android:textSize="16sp" />
            </TableRow>
        </TableLayout>
    <CheckBox android:layout_height="wrap_content" android:id="@+id/profil_checkbox"
        android:layout_width="wrap_content" android:layout_gravity="center_vertical" />
</LinearLayout>

我得到了这个:

http://img11.hostingpics.net/pics/819091Capture.png

我有两个问题: * 我看不到复选框 * 文字已删减

,感谢您的关注

 <?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="horizontal" android:layout_width="fill_parent"
    android:layout_height="fill_parent" android:background="@null">

    <ImageView android:layout_width="70dip"
        android:layout_height="wrap_content" android:layout_marginLeft="10dip"
        android:src="@drawable/photo_profile" android:id="@+id/profil_image"
        android:layout_gravity="center" android:layout_marginRight="10dip" />
        <TableLayout android:layout_width="wrap_content"
        android:layout_height="wrap_content" android:layout_marginLeft="15dip">
            <TableRow>
                <TextView android:layout_width="wrap_content" android:text="@string/experience"
                    android:layout_height="wrap_content" android:textStyle="bold"
                    android:textColor="@android:color/black" android:textSize="16sp" />
                <TextView android:id="@+id/profil_experience"
                    android:layout_width="wrap_content" android:layout_height="wrap_content"
                    android:textColor="@android:color/black" android:textSize="16sp" />
            </TableRow>
            <TableRow>
                <TextView android:layout_width="wrap_content" android:text="@string/secteur"
                    android:layout_height="wrap_content" android:textStyle="bold"
                    android:textColor="@android:color/black" android:textSize="16sp" />
                <TextView android:id="@+id/profil_secteur"
                    android:layout_width="wrap_content" android:layout_height="wrap_content"
                    android:textColor="@android:color/black" android:textSize="16sp" />
            </TableRow>
            <TableRow>
                <TextView android:layout_width="wrap_content" android:text="@string/lieu"
                    android:layout_height="wrap_content" android:textStyle="bold"
                    android:textColor="@android:color/black" android:textSize="16sp" />
                <TextView android:id="@+id/profil_lieu"
                    android:layout_width="wrap_content" android:layout_height="wrap_content"
                      android:singleLine="false"
                    android:textColor="@android:color/black" android:textSize="16sp" />
            </TableRow>
            <TableRow>
                <TextView android:layout_width="wrap_content" android:text="@string/niveau_etude"
                    android:layout_height="wrap_content" android:textStyle="bold"
                    android:textColor="@android:color/black" android:textSize="16sp" />
                <TextView android:id="@+id/profil_niveau"
                    android:layout_width="wrap_content" android:layout_height="wrap_content"
                    android:textColor="@android:color/black" android:textSize="16sp" />
            </TableRow>
            <TableRow>
                <TextView android:layout_width="wrap_content" android:text="@string/entreprise"
                    android:layout_height="wrap_content" android:textStyle="bold"
                    android:textColor="@android:color/black" android:textSize="16sp" />
                <TextView android:id="@+id/profil_societe"
                    android:layout_width="wrap_content" android:layout_height="wrap_content"
                    android:textColor="@android:color/black" android:textSize="16sp" />
            </TableRow>
        </TableLayout>
    <CheckBox android:layout_height="wrap_content" android:id="@+id/profil_checkbox"
        android:layout_width="wrap_content" android:layout_gravity="center_vertical" />
</LinearLayout>

and i got this :

http://img11.hostingpics.net/pics/819091Capture.png

I have two problems :
* I can't see the Checkbox
* The text is cutted

and thank you for your attention

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

多像笑话 2024-12-10 12:33:06

您的复选框中没有任何文本。尝试添加 text="Some Text" 看看它是否显示。我猜既然你把它设置为wrap_content,你实际上没有任何内容要换行。

You don't have any text in your checkbox. Try adding a text="Some Text" to see if it shows up. I'm guessing since you have it set to wrap_content, you don't actually have any content to wrap.

半夏半凉 2024-12-10 12:33:06

您可以在固定高度的 ScrollView 中使用 TableLayout。因此底部区域可用于 CheckBox。

You can use your TableLayout in a ScrollView of fixed height.so bottom area can be used for CheckBox.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文