我的活動有一行EditView,一個Multi-ine EditView和一個Button。 當我在單行EditView中輸入一個長文本時,整個表單和submit按鈕都向右移動。而且我無法提交表單。我怎樣才能解決這個問題。Android:EditView正在向右移動
感謝, nehatha
+++編輯+++++++
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent" android:layout_height="wrap_content"
android:background="@drawable/bg" android:orientation="vertical"
android:id="@+id/rootView">
<LinearLayout android:layout_width="fill_parent"
android:background="@color/Black" android:layout_height="1dip" />
<ScrollView android:id="@+id/ScrollView01"
android:layout_width="fill_parent" android:layout_height="wrap_content">
<LinearLayout
android:focusable="true"
android:focusableInTouchMode="true"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent" android:layout_height="fill_parent"
android:layout_gravity="center" android:layout_marginBottom="2dip"
android:paddingLeft="12dip" android:paddingRight="20dip"
android:paddingTop="15dip" android:stretchColumns="0">
<TableRow android:layout_marginBottom="5dip">
<ImageView android:id="@+id/img"
android:layout_width="270dip" android:layout_height="270dip">
</ImageView>
</TableRow>
<TableRow android:layout_marginBottom="5dip">
<EditText android:background="@android:drawable/editbox_background"
android:focusable="true" android:id="@+id/txtTitle"
android:hint="@string/hint_title" android:nextFocusDown="@+id/txtDesc"
android:imeOptions="actionNext" android:inputType="text"
android:textSize="6pt" android:layout_width="fill_parent"
/>
</TableRow>
<TableRow android:layout_marginBottom="5dip">
<TextView android:padding="3dip" android:textSize="18dip"
android:textColor="@color/registration_fields_title" android:text="Description" />
</TableRow>
<TableRow android:layout_marginBottom="5dip">
<EditText android:background="@android:drawable/editbox_background"
android:focusable="true" android:gravity="top" android:inputType="textMultiLine"
android:minLines="5" android:id="@+id/txtDesc"
android:nextFocusDown="@+id/btn_update" android:imeOptions="actionDone"
android:textSize="6pt" android:layout_width="fill_parent"
/>
</TableRow>
<TableRow android:layout_marginBottom="5dip">
<Button android:layout_width="wrap_content"
android:layout_gravity="center" android:layout_height="wrap_content"
android:textStyle="bold" android:textColor="@color/white"
android:clickable="true" android:background="@drawable/menu_button_border_shape"
android:layout_marginLeft="10px" android:text="Post"
android:id="@+id/btn_post"></Button>
</TableRow>
</TableLayout>
</LinearLayout>
</ScrollView>
您好康涅狄格州,機器人:layout_width = 「FILL_PARENT」 不爲我工作。我使用實際的佈局代碼編輯了我的原始帖子。你可以檢查一次嗎? –
指定固定寬度「300dip」工作正常,但它將如何工作在不同的屏幕尺寸..? –
指定一個確切的寬度不是真的建議,除非你知道如何使它適用於不同的設備。我真的會嘗試使用fill_parent。你說它不工作,它究竟做了什麼? –