我有一个android活动xml和他的xml在里面制作主RelativeLayout。RelativeLayout里面添加一个按钮和一个线性布局,我点击了按钮但没有点击,因为该按钮过于线性布局
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<Button
android:id="@+id/btnTest"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<LinearLayout
android:id="@+id/parentLayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
</LinearLayout>
</RelativeLayout>
getActivity().findViewById(R.id.btnTest).setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
Log.e(TAG, "onClick: ");
}
});
单击打印日志。
萧十郎
相关分类