私は Android アプリケーションを開発しており、Eclipse で画面の高さよりも大きなレイアウトを設計したいと考えています。
フラグメントのレイアウトがあり、このフラグメントはScrollView
on内にありFragmentActivity
ます。
これは私のフラグメントのレイアウトです:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/user_pro_main_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<TextView
android:id="@+id/text_state"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/layout_state"
android:textAppearance="?android:attr/textAppearanceLarge" />
</LinearLayout>
android:layout_height="match_parent"
日食のデザイナーで大きくするために変更する必要がありますか?
Eclipse デザイナーでレイアウトを大きく表示するにはどうすればよいですか?