2つのテキストビューと1つのボタンを使用しているxmlファイルのコードを見てください...問題は、テキストビューをクリックすると、デフォルトのキーボードが表示され、2番目のテキストビューの半分とボタンが非表示になることです...キーボードを手動で閉じる必要があります。そうすると、送信ボタンをクリックできるようになります。
私の質問は、キーボードが表示されているときに、ボタンが表示されるようにビュー全体が上下にスライドまたは縮小する方法を実行する方法です。
<?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" >
<EditText
android:id="@+id/etRecieverNum"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:inputType="textNoSuggestions"
>
</EditText>
<EditText
android:id="@+id/etMessageToBeSent"
android:layout_width="fill_parent"
android:layout_height="0dip"
android:layout_weight="0.82"
android:gravity="top|left"
android:inputType="textNoSuggestions"
/>
<Button
android:id="@+id/bSend"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Send" />
</LinearLayout>