嘿,我在 android xml 中遇到了这些线性布局的问题。最初我以相对布局进行操作,效果很好,但经过一些研究后,我发现滚动视图内的相对布局按理说是行不通的。所以现在经过多次调整,我的 imageview 出现了,但在它的上方和下方都有很大的边距,我的 textview 甚至没有显示,除了它应该在图形编辑器中的位置而是空白。
那怎么了?我什至应该使用线性布局吗?
这大概是它应该看起来的样子http://www.mediafire.com/view/?z945tz2vrb2x46t
这就是在 Abdul 和 Ralgha 的帮助以及设置基本线性布局的高度以包装内容之后的样子http://www.mediafire.com/view/?px17q2z3yyeo8az
谢谢
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<ScrollView
android:id="@+id/scrollView1"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<LinearLayout
android:id="@+id/LinearLayout1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
>
<TextView
android:id="@+id/today"
android:src="@string/today"
android:textSize="30dp"
android:layout_weight="1"
android:layout_height="wrap_content"
android:layout_width="fill_parent"
/>
<ImageView
android:id="@+id/image1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:src="@drawable/weeklylist_blocks"
/>
</LinearLayout>
</ScrollView>
</LinearLayout>
`![screwed up layout][1]