私はテキストボックスがあるAndroidアプリを開発しています..私が欲しいのは、そのテキストボックスのOnclickです.キーボードの下にあるレイアウトボタンは、キーボードによって隠されているため、キーボードボタンと一緒に表示されるはずです. 以下のコードをxmlで使用しています。
<LinearLayout
android:id="@+id/layout1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:layout_weight=".20">
<EditText
android:id="@+id/edittext1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:cursorVisible="false"
android:ems="10"
android:gravity="top"
android:hint="Message : "
android:inputType="textMultiLine"
android:scrollbars="vertical"
android:textColor="#000000"
android:textSize="15sp"
android:visibility="visible" />
</LinearLayout>
<LinearLayout
android:id="@+id/linearLayout2"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight=".80"
android:background="@drawable/albgbckgrnd"
android:orientation="horizontal" >
<ImageButton
android:id="@+id/button1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_margin="5dp"
android:layout_weight=".33"
android:textSize="25sp"
android:typeface="sans"
android:visibility="visible" />
<ImageButton
android:id="@+id/button2"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_margin="5dp"
android:layout_weight=".33"
android:textSize="25sp"
android:typeface="sans"
android:visibility="visible" />
<ImageButton
android:id="@+id/button3"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_margin="5dp"
android:layout_weight=".33"
android:textSize="25sp"
android:typeface="sans"
android:visibility="visible" />
</LinearLayout>
やり方がわからない!助けてください!ありがとう!