【发布时间】:2013-11-22 12:09:40
【问题描述】:
我想用我的EditText 视图填充屏幕,在这个Activity 中,所有屏幕高度减去按钮和EditTexts 的高度
我的活动的xml
<TableLayout
android:layout_width="match_parent"
android:layout_height="match_parent" >
<TableRow
android:id="@+id/tableRow_pickcontact_button"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<Button
android:id="@+id/pickcontact_button"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:onClick="pickContact"
android:text="@string/pickcontact_string" />
</TableRow>
<TableRow
android:id="@+id/tableRow_chosen_contact"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<TextView
android:id="@+id/chosen_contact"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="@string/contact_default_string"
android:textAppearance="?android:attr/textAppearanceMedium" />
<TextView
android:id="@+id/chosen_contact_tel_number"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="@string/contact_default_number"
android:textAppearance="?android:attr/textAppearanceMedium" />
</TableRow>
<TableRow
android:id="@+id/tableRow_message"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<EditText
android:id="@+id/edit_message"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:hint="@string/edit_message"
android:minHeight="100dp"
android:gravity="bottom" />
</TableRow>
<TableRow
android:id="@+id/tableRow_send"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<Button
android:id="@+id/button_send"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:onClick="sendMessage"
android:text="@string/button_send" />
<Button
android:id="@+id/button1"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:onClick="sendEmail"
android:text="@string/send_email_btn" />
</TableRow>
</TableLayout>
【问题讨论】:
-
你能发一个你想要设计的屏幕截图吗?
标签: android android-layout height