我在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>
答案 0 :(得分:1)
尝试将此添加到您的LinearLayout:
android:layout_width="fill_parent"
android:layout_height="fill_parent"
我猜测布局没有显示?
答案 1 :(得分:1)
android:height="wrap_content"
对于ListView
等可垂直滚动的小部件没有意义。将android:layout_weight
与LinearLayout
或RelativeLayout
一起使用即可实现您想要实现的目标。