按钮没有出现在我的线性布局中

发布于 2024-11-07 17:47:48 字数 830 浏览 4 评论 0原文

我在 LinearLayout 内部有一个垂直方向的按钮。不确定为什么按钮不显示?

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical">
<com.commonsware.cwac.tlv.TouchListView
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tlv="http://schemas.android.com/apk/res/org.stocktwits.activity"

    android:id="@android:id/list"
    android:layout_width="fill_parent"
    android:drawSelectorOnTop="false"
    tlv:normal_height="64dip"
    tlv:grabber="@+id/icon"
    tlv:remove_mode="slideRight"
android:layout_height="wrap_content"/>
<Button android:text="Button" android:id="@+id/button1" android:layout_width="wrap_content" android:layout_height="wrap_content"></Button>

</LinearLayout>

I have a button inside of a LinearLayout that is oriented vertically. Not sure why the button doesn't show up?

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical">
<com.commonsware.cwac.tlv.TouchListView
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tlv="http://schemas.android.com/apk/res/org.stocktwits.activity"

    android:id="@android:id/list"
    android:layout_width="fill_parent"
    android:drawSelectorOnTop="false"
    tlv:normal_height="64dip"
    tlv:grabber="@+id/icon"
    tlv:remove_mode="slideRight"
android:layout_height="wrap_content"/>
<Button android:text="Button" android:id="@+id/button1" android:layout_width="wrap_content" android:layout_height="wrap_content"></Button>

</LinearLayout>

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

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

发布评论

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

评论(2

晨曦÷微暖 2024-11-14 17:47:48

android:height="wrap_content" 对于像 ListView 这样的垂直滚动小部件没有任何意义。将 android:layout_weightLinearLayoutRelativeLayout 结合使用来实现您想要实现的任何外观。

android:height="wrap_content" has no meaning for vertically-scrollable widgets like ListView. Use android:layout_weight with your LinearLayout or a RelativeLayout to achieve whatever look you are trying to achieve.

爱要勇敢去追 2024-11-14 17:47:48

尝试将其添加到您的 LinearLayout 中:

android:layout_width="fill_parent"
android:layout_height="fill_parent"

我猜布局只是没有显示?

Try adding this to your LinearLayout:

android:layout_width="fill_parent"
android:layout_height="fill_parent"

I'm guessing the layout is just not showing?

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