显示嵌套 LinearLayout 时出错
我在 xml 文件中使用嵌套的线性布局。
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#ffffff"
>
<LinearLayout android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<Button android:text="left"
android:layout_weight="1"
android:layout_gravity="left"
android:id="@+id/previous"></Button>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:gravity="center"
android:id="@+id/date"
android:textColor="#505050"
/>
<Button android:text="right"
android:layout_weight="1"
android:layout_gravity="right"
android:id="@+id/next"></Button>
</LinearLayout>
.........
........
</LinearLayout>
我的应用程序无法启动,我收到一条错误消息,指出进程意外停止。尽管它可以在没有内部 Linearlayout 的情况下工作。 有什么想法吗?
谢谢
I am using nested linearlayout in my xml file.
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#ffffff"
>
<LinearLayout android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<Button android:text="left"
android:layout_weight="1"
android:layout_gravity="left"
android:id="@+id/previous"></Button>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:gravity="center"
android:id="@+id/date"
android:textColor="#505050"
/>
<Button android:text="right"
android:layout_weight="1"
android:layout_gravity="right"
android:id="@+id/next"></Button>
</LinearLayout>
.........
........
</LinearLayout>
My application doesnt start , i get an error message saying the process stopped unexpectedly. Though it works without the inner Linearlayout.
Any ideas why?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当您抛出异常并且需要帮助时,您绝对应该发布堆栈跟踪,但在这种情况下,您似乎缺少按钮的
layout_width
和layout_height
属性。You should definitely post the stack trace when you have exceptions thrown and you want help, but in this case you seem to be missing the
layout_width
andlayout_height
attributes for your buttons.