私は最近、Android アプリケーションに取り組んでおり、最後の日かそこらで、Eclipse レイアウト エディタを使用して GUI に取り組んでいます。残念ながら、x 次元以外の方法で線形レイアウトのサイズを変更することはできません。その中に含まれる TextView のサイズを変更することで、サイズを変更することもできます。sushil が述べたように、linearlayout の高さを制御することはできません。私のコード:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<ScrollView
android:id="@+id/scrollView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1" >
<LinearLayout
android:id="@+id/helpLinearLayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="top"
android:orientation="horizontal" >
<TextView
android:id="@+id/InfoTitle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Info:"
android:textSize="35sp" />
</LinearLayout>
</ScrollView>
</LinearLayout>