gpt4 book ai didi

java - 选择editText时如何隐藏部分布局

转载 作者:行者123 更新时间:2023-11-30 10:59:50 25 4
gpt4 key购买 nike

有没有办法在我点击 EditText 和键盘显示时隐藏一些按钮?

我有这个布局

    <ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_above="@+id/InnerRelativeLayout">


<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:stretchColumns="1"

android:id="@+id/table">


<TableRow
android:id="@+id/tariffRow">

<TextView
android:layout_column="1"
android:text="Název"
android:padding="3dip" />
<EditText
android:id="@+id/tariffName"
android:gravity="right"
android:padding="3dip" />
</TableRow>
</TableLayout>
</ScrollView>
<LinearLayout android:id="@+id/InnerRelativeLayout"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:layout_alignParentBottom="true">
<Button android:id="@+id/okBtn"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:gravity="center"
android:text="Ok"/>
<Button android:id="@+id/stornoBtn"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:gravity="center"
android:text="Storno" />
</LinearLayout>

现在,当单击 editText 以键入一些值时,我需要隐藏 linearLayout android:id="@+id/InnerRelativeLayout",否则它在键盘上方仍然可见。

最佳答案

需要为 EditText 设置一个 FocusChangeListener,它会在 EditText 上的焦点发生变化时触发,如下所示:

editText.setOnFocusChangeListener(new View.OnFocusChangeListener() {
@Override
public void onFocusChange(View v, boolean hasFocus) {
if (hasFocus) {
// hide relative layout
} else {
// show relative layout
}
}
});

关于java - 选择editText时如何隐藏部分布局,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31776174/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com