これは私のレイアウトです:
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/scroll_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="@dimen/defaut_padding" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="@dimen/defaut_padding"
android:orientation="vertical" >
<FrameLayout
android:id="@+id/photo"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<ImageView
android:id="@+id/picture"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:scaleType="fitXY" />
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="right"
android:layout_margin="10dp"
android:background="@drawable/watermark" />
<ProgressBar
android:id="@+id/bitmap_loading"
style="?android:attr/progressBarStyleLarge"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:visibility="visible" />
</FrameLayout>
<FrameLayout
android:id="@+id/user"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/photo"
android:layout_marginLeft="15dp"
android:layout_marginTop="-30dp"
android:background="@android:color/white"
android:padding="@dimen/smallest_padding" >
<ImageView
android:id="@+id/user_picture"
android:layout_width="50dp"
android:layout_height="50dp"
android:src="@drawable/anonymous_user" />
</FrameLayout>
<TextView
android:id="@+id/user_name"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignBottom="@id/user"
android:layout_marginLeft="@dimen/defaut_padding"
android:layout_toRightOf="@id/user"
android:text="@string/anonymous_user"
android:textStyle="bold" />
</RelativeLayout>
<FrameLayout
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<EditText
android:id="@+id/input_description"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="top"
android:padding="5dp"
android:layout_marginBottom="@dimen/defaut_padding"
android:background="@drawable/textfield"
android:hint="@string/description_hint"
android:focusableInTouchMode="true"
android:maxLines="3"
android:scrollbars="vertical" />
<Button
android:id="@+id/publish"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/confirm_button_selector"
android:text="@string/confirm_button"
android:textColor="@android:color/white"
android:textSize="@dimen/big_text_size"
android:textStyle="bold" />
</FrameLayout>
</LinearLayout>
</ScrollView>
EditTextで数字を出し始めたときにソフトキーボードが表示されたらスクロールしたいです。これどうやってするの?現在、スクロールは機能しますが、キーボードがボタンの上に表示され、キーボードの上にボタンが必要です
ユーザーが EditText をクリックしたときに、スクロールを移動しようとしました。次のようにします。
mSv.scrollTo(0, mSv.getBottom());
mSv は私の ScrollView です
ただし、ユーザーが EditText を 2 回目にクリックした場合にのみ機能します。
助けてくれてありがとう。