我有一个删除按钮(btnDelete)。当我按下它时,我想删除其他"选择"按钮。 我不知道如何在触摸屏上选择某些内容或确定现在应该删除哪个UI-Element。 这是我的活动的.xml文件:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/overViewLayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/background"
android:columnCount="6"
android:orientation="vertical"
tools:context="com.example.myexpenses.OverviewActivity" >
<TextView
android:id="@+id/tvOverViewTitel"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:layout_marginTop="28dp"
android:text="Übersicht"
android:textColor="#ffffffff"
android:textSize="24dp"
android:textStyle="bold" />
<ScrollView android:layout_width="fill_parent" android:layout_height="195dp" android:scrollbars="vertical"
android:layout_marginTop="90dp">
<LinearLayout android:layout_width="fill_parent" android:orientation="vertical" android:layout_height="wrap_content">
<LinearLayout android:layout_width="fill_parent" android:orientation="horizontal" android:layout_height="wrap_content">
<Button
android:id="@+id/test11"
android:layout_width="60dp"
android:layout_height="60dp"
android:background="@drawable/selected_category"
android:text="rechts1" />
<Button
android:id="@+id/test18831"
android:layout_width="60dp"
android:layout_height="60dp"
android:background="@drawable/selected_category"
android:text="right2" />
</LinearLayout>
<LinearLayout android:layout_width="fill_parent" android:orientation="horizontal" android:layout_height="wrap_content">
<Button
android:id="@+id/test141"
android:layout_width="60dp"
android:layout_height="60dp"
android:background="@drawable/selected_category"
android:text="links" />
<Button
android:id="@+id/test533"
android:layout_width="60dp"
android:layout_height="60dp"
android:background="@drawable/selected_category"
android:text="links" />
</LinearLayout>
<LinearLayout android:layout_width="fill_parent" android:orientation="horizontal" android:layout_height="fill_parent">
<Button
android:id="@+id/test121"
android:layout_width="60dp"
android:layout_height="60dp"
android:background="@drawable/selected_category"
android:text="links" />
<Button
android:id="@+id/test23"
android:layout_width="60dp"
android:layout_height="60dp"
android:background="@drawable/selected_category"
android:text="links" />
</LinearLayout>
<LinearLayout android:layout_width="fill_parent" android:orientation="horizontal" android:layout_height="wrap_content">
<Button
android:id="@+id/test1212212"
android:layout_width="60dp"
android:layout_height="60dp"
android:background="@drawable/selected_category"
android:text="links" />
<Button
android:id="@+id/test2324"
android:layout_width="60dp"
android:layout_height="60dp"
android:background="@drawable/selected_category"
android:text="links" />
</LinearLayout>
<LinearLayout android:layout_width="fill_parent" android:orientation="horizontal" android:layout_height="wrap_content">
<Button
android:id="@+id/test121222112"
android:layout_width="60dp"
android:layout_height="60dp"
android:background="@drawable/selected_category"
android:text="links" />
<Button
android:id="@+id/test2233"
android:layout_width="60dp"
android:layout_height="60dp"
android:background="@drawable/selected_category"
android:text="links" />
</LinearLayout>
<LinearLayout android:layout_width="fill_parent" android:orientation="horizontal" android:layout_height="wrap_content">
<Button
android:id="@+id/test12199"
android:layout_width="60dp"
android:layout_height="60dp"
android:background="@drawable/selected_category"
android:text="links" />
<Button
android:id="@+id/test23232"
android:layout_width="60dp"
android:layout_height="60dp"
android:background="@drawable/selected_category"
android:text="links" />
</LinearLayout>
<LinearLayout android:layout_width="fill_parent" android:orientation="horizontal" android:layout_height="wrap_content">
<Button
android:id="@+id/test1111"
android:layout_width="60dp"
android:layout_height="60dp"
android:background="@drawable/selected_category"
android:text="links" />
<Button
android:id="@+id/test23222"
android:layout_width="60dp"
android:layout_height="60dp"
android:background="@drawable/selected_category"
android:text="links" />
</LinearLayout>
</LinearLayout>
</ScrollView>
<Button
android:id="@+id/btnDelete"
android:layout_width="60dp"
android:layout_height="60dp"
android:layout_alignBaseline="@+id/btnAdd"
android:layout_alignBottom="@+id/btnAdd"
android:layout_alignParentRight="true"
android:layout_marginRight="32dp"
android:background="@drawable/delete" />
<Button
android:id="@+id/btnAdd"
android:layout_width="60dp"
android:layout_height="60dp"
android:layout_alignParentBottom="true"
android:layout_marginBottom="46dp"
android:layout_marginRight="24dp"
android:layout_toLeftOf="@+id/tvTitel"
android:background="@drawable/add" />
</RelativeLayout>
答案 0 :(得分:1)
我不太了解您对问题的解释,但从标题判断我认为这是您想要在Java代码中执行的操作。
Button btn = (Button)findViewById(R.layout.button)
btn.setVisibility(btn.GONE)
将其从布局中删除。或者
btn.setVisibility(btn.INVISIBLE)
哪会隐藏它所以它仍占用空间
答案 1 :(得分:0)
你设置ScrollView的高度是195dp,我认为这是你只看到一个按钮的主要原因。在您的情况下,您可以使用“match_parent”或“fill_parent”代替
<ScrollView
android:layout_width="fill_parent"
android:layout_height="fill_parent">