我不知道为什么最后两个按钮不可点击,我使用了背景(我设置了它们)很多时间并且它适用于其他布局,我确信错误的是像foucable或clickable但是我不知道到底在哪里。
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#FFFFFF"
android:fillViewport="true" >
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#FFFFFF"
android:orientation="vertical" >
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="20dip"
android:layout_marginLeft="10dip"
android:layout_marginRight="10dip"
android:layout_marginTop="20dip"
android:layout_weight="1" >
<Button
android:id="@+id/b_orderMeal_selectRestaurant"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_marginRight="30dip"
android:text="@string/b_selectRestaurant" />
<ImageView
android:id="@+id/iv_orderMeal_isSelectRestaurant"
android:layout_width="25dp"
android:layout_height="25dp"
android:layout_alignParentRight="true"
android:contentDescription="@string/iv_isSelected"
android:src="@drawable/x" />
</RelativeLayout>
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="20dip"
android:layout_marginLeft="10dip"
android:layout_marginRight="10dip"
android:layout_marginTop="20dip"
android:layout_weight="1" >
<Button
android:id="@+id/b_orderMeal_selectMealItems"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_marginRight="30dip"
android:text="@string/b_select_MealItems" />
<ImageView
android:id="@+id/iv_orderMeal_isSelectMealItems"
android:layout_width="25dp"
android:layout_height="25dp"
android:layout_alignParentRight="true"
android:contentDescription="@string/iv_isSelected"
android:src="@drawable/x" />
</RelativeLayout>
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="20dip"
android:layout_marginLeft="10dip"
android:layout_marginRight="10dip"
android:layout_marginTop="20dip"
android:layout_weight="1" >
<Button
android:id="@+id/b_orderMeal_selectPayMethod"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_marginRight="30dip"
android:text="@string/b_selectPayMethod" />
<ImageView
android:id="@+id/iv_orderMeal_isSelectPayMethod"
android:layout_width="25dp"
android:layout_height="25dp"
android:layout_alignParentRight="true"
android:contentDescription="@string/iv_isSelected"
android:src="@drawable/x" />
</RelativeLayout>
<Button
android:id="@+id/b_orderMeal_checkBasket"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="10dip"
android:layout_marginRight="40dip"
android:layout_marginTop="20dip"
android:layout_weight="1"
android:text="@string/b_check_basket" />
<TextView
android:id="@+id/tv_orderMeal_errorMessage"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="20dip"
android:layout_marginRight="20dip"
android:layout_marginTop="30dip"
android:layout_weight="1"
android:text="@string/tv_orderMeal_errorMessage"
android:textColor="#FF0000"
android:textSize="20dip"
android:textStyle="bold"
android:typeface="sans" />
</LinearLayout>
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:background="@drawable/bg_selector"
android:orientation="horizontal" >
<Button
android:id="@+id/b_orderMeal_send"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginRight="4dip"
android:layout_weight="1"
android:background="@drawable/button_bg"
android:text="@string/b_send"
android:focusable="true"
android:clickable="true"
android:textColor="#FFFFFF" />
<Button
android:id="@+id/b_orderMeal_cancel"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="4dip"
android:layout_weight="1"
android:background="@drawable/button_bg"
android:text="@string/b_cancel"
android:clickable="true"
android:textColor="#FFFFFF" />
</LinearLayout>
</RelativeLayout>
</ScrollView>
我说的是最后两个按钮
b_send = (Button) findViewById(R.id.b_orderMeal_send);
b_send.setOnClickListener(this);
b_cancel = (Button) findViewById(R.id.b_orderMeal_cancel);
b_cancel.setOnClickListener(this);
@Override
public void onClick(View v) {
case R.id.b_orderMeal_cancel:
Toast.makeText(this, "roma", Toast.LENGTH_LONG);
break;
}
吐司没有出现
答案 0 :(得分:5)
我不知道为什么后两个按钮不可点击,我用了 背景(我设置他们)很多时候,它与另一个合作 布局,我确信错误是像foucable或 可点击但我不知道到底在哪里。
我认为您的XML
设计在所有方面都可以,因此问题最有可能出现在Java
中。很可能您忘记为OnClickListener
注册Button(s)
。
Button btn = (Button) findViewById(R.id.b_orderMeal_send);
btn.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
Toast.makeText(this, "Click event works.", Toast.LENGTH_SHORT).show();
}
}));
或者您可以使用OnClickListener
界面,然后
public void onClick(View v) {
switch (v.getId()) {
case R.id.b_orderMeal_send:
Toast.makeText(this, "Click event works.", Toast.LENGTH_SHORT).show();
break;
}
}
答案 1 :(得分:2)
有时候仿真器会造成问题,所以我想提醒大家使用Real Android设备检查/运行您的应用程序
答案 2 :(得分:1)
将您的onClick()
方法替换为以下方法,并告诉我们有关logcat的信息。
您似乎正在尝试展示toast
,但缺少.show()
方法来展示吐司。
请尝试以下代码并告知我们
@Override
public void onClick(View v) {
if(v.equals(b_send)){
Toast.makeText(this,"b_send clicked", Toast.LENGTH_LONG).show();
Log.d("TEMP TAG","b_send clicked");
} else if(v.equals(b_cancel)){
Toast.makeText(this,"b_cancel clicked", Toast.LENGTH_LONG).show();
Log.d("TEMP TAG","b_cancel clicked");
}
}
答案 3 :(得分:1)
在您的按钮的xml中设置clickable = true,并在您的代码中尝试此操作。
findViewById(R.id.b_orderMeal_send).setOnClickListener(commonClickListener);
findViewById(R.id.b_orderMeal_cancel).setOnClickListener(commonClickListener);
private OnClickListener commonClickListener = new OnClickListener() {
@Override
public void onClick(View v) {
int selectedItemId = v.getId();
switch (selectedItemId) {
case R.id.b_orderMeal_send:
Toast.makeText(this, "roma", Toast.LENGTH_LONG).show();
break;
case R.id.b_orderMeal_cancel:
Toast.makeText(this, "roma", Toast.LENGTH_LONG).show();
break;
}
}
答案 4 :(得分:0)
同一件事一直发生在我身上,但我的处境略有不同。首先,按钮可以正常工作,并且都可以单击,然后在重新启动几次后突然完全停止工作。
我只是Quit
Emulator
然后重新启动了它,按钮又开始工作了