显示嵌套 LinearLayout 时出错

发布于 2024-12-11 02:18:24 字数 1025 浏览 1 评论 0原文

我在 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 技术交流群。

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

发布评论

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

评论(1

将军与妓 2024-12-18 02:18:24

当您抛出异常并且需要帮助时,您绝对应该发布堆栈跟踪,但在这种情况下,您似乎缺少按钮的 layout_widthlayout_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 and layout_height attributes for your buttons.

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