为什么我的ImageButton不能在片段中工作? ImageButton包含Drawable并且是透明的。 当我将它放在我的RelativeLayout下面时,它的工作......
<RelativeLayout
android:id="@+id/rl_newsdet_root"
xmlns:android="http://schemas.android.com/apk/res/android"
android:background="@drawable/bg"
android:focusableInTouchMode="true"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:id="@+id/tv_newsdet_title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="@color/white"
android:layout_marginTop="7dp"
android:textSize="20sp"
android:layout_centerHorizontal="true"
/>
<ImageButton
android:id="@+id/btn_newsdet_back"
android:layout_marginLeft="10dp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:clickable="true"
android:src="@drawable/bt_back"
/>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginTop="?android:attr/actionBarSize"
android:background="@color/white"
android:gravity="left"
>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/tv_newsdet_name"
android:textSize="18sp"
android:layout_marginLeft="10dp"
android:layout_marginTop="5dp"
android:textStyle="bold"
android:textColor="@color/cyan"
android:background="@color/grey"
android:paddingLeft="1dp"
android:paddingRight="1dp" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/tv_newsdet_time"
android:textColor="@color/white"
android:textSize="18sp"
android:layout_toRightOf="@+id/tv_newsdet_name"
android:paddingLeft="1dp"
android:paddingRight="1dp"
android:background="@color/grey"
android:layout_marginTop="5dp" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="New Text"
android:id="@+id/tv_newsdet_text"
android:layout_marginLeft="10dp"
android:layout_marginTop="1dp"
android:layout_below="@+id/tv_newsdet_name"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true" />
</RelativeLayout>
带有AndroidAnnotations的onClickListener
@ViewById
ImageButton btn_newsdet_back;
@Click(R.id.btn_newsdet_back)
void back() {
Log.i(TAG,"back");
mActivity.popFragments();
}
修改 onClick正在工作(调用),当它在TextView下面时。任何人都可以解释原因吗?
答案 0 :(得分:0)
正如你所说的那样,当你把按钮放在RelativeLayout里面时,一切正常,原因应该是第二个RelativeLayout的参数声明为:
android:layout_width="match_parent"
android:layout_height="match_parent"
这意味着&#34;填充&#34;它的父级,即包含按钮的原始RelativeLayout。它就像你正在创建一个覆盖按钮的图层,并保持与它的任何交互。当您单击该按钮时,您实际上是在点击第二个RelativeLayout。
我没有尝试过这个,但你应该考虑设置:
android:layout_below="@id/btn_newsdet_back"
在按钮下方的RelativeLayout上。
答案 1 :(得分:0)
您可以尝试以下代码:
这是片段代码: TestFragment.java
public class TestFragment extends Fragment {
@Override
public View onCreateView(LayoutInflater inflater,
@Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
// TODO Auto-generated method stub
View view = inflater.inflate(R.layout.fragment_one, container, false);
ImageButton button = (ImageButton) view.findViewById(R.id.img2);
button.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
// TODO Auto-generated method stub
Toast.makeText(getActivity(), "Click on fragment ",
Toast.LENGTH_LONG).show();
}
});
return view;
}
}
这是'TestFragment`
的布局<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<ImageButton
android:id="@+id/img2"
android:layout_width="100dp"
android:layout_height="80dp"
android:src="@drawable/ic_launcher" />
</RelativeLayout>
这是 MainActivity.java
public class MainActivity extends FragmentActivity {
ImageButton imgButton;
@Override
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
setContentView(R.layout.layout_main);
FragmentManager fragmentManager = getSupportFragmentManager();
TestFragment fragment = (TestFragment) fragmentManager
.findFragmentById(R.id.fragment);
FragmentTransaction fragmentTransaction = fragmentManager
.beginTransaction();
// fragmentTransaction.add(fragment, "");
fragmentTransaction.commit();
}
}
这是 MainActivity
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<fragment
android:id="@+id/fragment"
android:name="com.alarmdemo.TestFragment"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</RelativeLayout>
此处ImageButton
放置在Fragment
中,并且工作正常。
答案 2 :(得分:0)
无需在图像按钮中添加可点击。请尝试以下操作:
<ImageButton
android:id="@+id/btn_newsdet_back"
android:layout_marginLeft="10dp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:onClick="mymethod"
android:src="@drawable/bt_back"
/>
public void mymethod(View v)
{
//your method
}
答案 3 :(得分:0)
@覆盖
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
View rootView = inflater.inflate(R.layout.fragment_sample,
container, false);
addListenerOnButton();
}
private void addListenerOnButton() {
imageButton = (ImageButton) rootview.findViewById(R.id.imageButton1);
imageButton.setOnClickListener(new OnClickListener() {
public void onClick(View arg0) {
Toast.makeText(MainActivity.this,
"ImageButton is clicked!", Toast.LENGTH_SHORT).show();
}
});
}
答案 4 :(得分:0)
我解决了。 问题是我使用透明的Actionbar,这是我正在寻找的叠加层。
我的onCreate()中的以下行解决了这个问题:
getActivity().getActionBar().hide();