布局高度我遇到了一些麻烦
这是我的代码:
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dip"
android:layout_weight="1"
android:orientation="horizontal"
android:paddingBottom="2dp"
android:paddingLeft="5dip"
android:paddingTop="2dp" >
<TextView
android:id="@+id/calendar_name_label"
style="@style/event_detail_label"
android:text="@string/calendar_name_label" />
<LinearLayout
android:id="@+id/calendars_place_holder"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:orientation="vertical" >
</LinearLayout>
calendars_place_holder是存储文本视图的布局,
并且整个布局很高,因为calendars_place_holder中只有一个文本视图,其中有3个或4个,
我可以提供一些建议吗?
提前致谢
答案 0 :(得分:0)
尝试为textview提供宽度
<TextView
android:id="@+id/calendar_name_label"
style="@style/event_detail_label"
android:text="@string/calendar_name_label"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>