ちょっと私はアンドロイドxmlのこれらの線形レイアウトに問題を抱えています。最初は相対レイアウトでそれらを実行し、それは正常に機能しましたが、いくつかの調査の後、スクロールビュー内の相対レイアウトがおそらく機能しないことを発見しました。そのため、多くの調整を行った後、imageviewは表示されますが、上下に大きなマージンがあり、textviewは、グラフィックエディタで想定されている場所以外には表示されませんが、空白になります。
どうしたの?線形レイアウトを使用する必要がありますか?
これはおおよそhttp://www.mediafire.com/view/?z945tz2vrb2x46tのように見えるはずです
これは、アブドゥルとラルガの助けを借りて、コンテンツをラップするためにベースリニアレイアウトの高さを設定した後のように見えます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]