表格布局问题
<?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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您的复选框中没有任何文本。尝试添加 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.
您可以在固定高度的 ScrollView 中使用 TableLayout。因此底部区域可用于 CheckBox。
You can use your TableLayout in a ScrollView of fixed height.so bottom area can be used for CheckBox.