Click事件在框架布局内不起作用 [英] Click event not working inside frame layout

查看:55
本文介绍了Click事件在框架布局内不起作用的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

public class GameView extends AppCompatActivity {

    @InjectView(R.id.back_btn_game_view)
    Button backBtnGameView;

    public static Context context;
    public static TextView matchNameView;
    public static String currentState = "";
    private AssetsPropertyReader assetsPropertyReader;
    private Properties skorkastProperties;
    private String skorkastMgntURL;
    public static Socket mSocket;
    private String skorkastSocketURL;
    public static boolean userConnected;
    public HashMap<String, Variables> variableHashMap = new HashMap<>();
    public static TextView timer;


    public static long millisInFuture = 0;
    public static long countDownInterval = 1000;
    public static CountDownTimer countDownTimer;
    public static long timeRemaining = 0;
    public static boolean isPaused = false;
    public static boolean isCanceled = false;
    public static String timeLeft = "", gameStatus = "";
    public static int periodCount = 0;
    public static int[] periodArray = new int[3];

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_game_view);
        butterknife.inject(this);
        matchNameView = (TextView) findViewById(R.id.match_name);
        timer = (TextView) findViewById(R.id.timer);

        context = GameView.this;
        assetsPropertyReader = new AssetsPropertyReader(context);
        skorkastProperties = assetsPropertyReader.getProperties("skorkast.properties");
        skorkastMgntURL = skorkastProperties.getProperty("SKORKAST_MGNT_URL");
        skorkastSocketURL = skorkastProperties.getProperty("SKORKAST_SOCKET_URL");
        userConnected = false;

        String matchname = getIntent().getStringExtra("matchname");
        matchNameView.setText(matchname);

        // Check that the activity is using the layout version with
        // the fragment_container FrameLayout
        if (findViewById(R.id.fragment_container) != null) {

            // However, if we're being restored from a previous state,
            // then we don't need to do anything and should return or else
            // we could end up with overlapping fragments.
            if (savedInstanceState != null) {
                return;
            }
        }

        try {
            mSocket = IO.socket(skorkastSocketURL);
            mSocket.connect();

            JSONObject joinObj = new JSONObject();
            try {
                joinObj.put("name", "scorer");
                joinObj.put("match", matchname);
            } catch (Exception e) {
                e.printStackTrace();
            }

            if (!GameView.userConnected) {
                GameView.mSocket.emit("join", joinObj, new Ack() {
                    @Override
                    public void call(Object... args) {
                        GameView.userConnected = true;
                        Log.i("TAG", "connected");
                    }
                });
            } else {
                Log.i("TAG", "already connected");
            }
        } catch (URISyntaxException e) {
            e.printStackTrace();
            Log.e("TAG", "error connect socket " + e.getMessage());
        } catch (Exception e) {
            e.printStackTrace();
            Log.e("TAG", "error connect socket " + e.getMessage());
        }

        Data.changeMode(2);
        Data.changeState(3, 4);


        //when the user click back button, it need to set the initiate normal play as state--> need to remove

        if (Data.currentState.getName().equals("initiate_normal_play")) {
            if (Data.currentState.getCurrentView().getOrientation().equalsIgnoreCase("vertical")) {
                VerticalFragment vFragment = new VerticalFragment();
                vFragment.setArguments(getIntent().getExtras());
                getSupportFragmentManager().beginTransaction().add(R.id.fragment_container, vFragment).commit();
            } else {
                HorizontalFragment hFragment = new HorizontalFragment();
                hFragment.setArguments(getIntent().getExtras());
                getSupportFragmentManager().beginTransaction().add(R.id.fragment_container, hFragment).commit();
            }
        }
    }

    @Override
    public void onWindowFocusChanged(boolean hasFocus) {
        super.onWindowFocusChanged(hasFocus);

        final int flags = View.SYSTEM_UI_FLAG_LAYOUT_STABLE
                | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION
                | View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN
                | View.SYSTEM_UI_FLAG_HIDE_NAVIGATION
                | View.SYSTEM_UI_FLAG_FULLSCREEN
                | View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY;

        SystemUiHelper uiHelper = new SystemUiHelper(this, SystemUiHelper.LEVEL_IMMERSIVE, flags);
        uiHelper.hide();
    }


    @Override
    public void onBackPressed() {
        Log.i("TAG", "Fragment stack count :: " + getSupportFragmentManager().getBackStackEntryCount());
        if (getSupportFragmentManager().getBackStackEntryCount() == 0) {

            if (GameView.mSocket != null && GameView.mSocket.connected()) {
                GameView.mSocket.emit("userdisconnect");
            }
            this.finish();
        } else {
            getSupportFragmentManager().popBackStack();
        }


    }
@OnClick(R.id.back_btn_game_view)
            public void onViewClicked () {
                Toast.makeText(this, "working finally",Toast.LENGTH_SHORT).show();
        }
}

XML文件:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:clickable="true"
    android:background="@drawable/icehockey_bg"
    android:orientation="horizontal">

<FrameLayout
    android:clickable="true"
    android:id="@+id/fragment_container"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >
    <RelativeLayout
        android:clickable="true"
        android:layout_width="match_parent"
        android:layout_height="wrap_content">

        <Button
            android:id="@+id/back_btn_game_view"
            android:layout_width="70dp"
            android:layout_height="wrap_content"
            android:adjustViewBounds="true"
            android:clickable="true"
            android:cropToPadding="true"
            android:scaleType="fitXY"
            android:src="@drawable/ic_back_button" />

        <TextView
            android:id="@+id/match_name"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerHorizontal="true"
            android:text="Match Name"
            android:textAllCaps="true"
            android:textSize="20sp"
            android:textStyle="bold" />

        <TextView
            android:id="@+id/timer"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentRight="true"
            android:text="02:00"
            android:textColor="#000000"
            android:textSize="20sp"
            android:textStyle="bold" />
    </RelativeLayout>
</FrameLayout>

</LinearLayout>

我在<$ c内有片段 $ c>活动布局。我在活动 click 个后退 Button 事件>布局。当我单击片段中的后退按钮时,根本没有任何响应。
但是我试图将 Button 移到 LinearLayout内的框架布局之外,它能正常工作,我不明白为什么它在框架布局内不能正常工作。请帮我解决这个问题。

I have Fragment inside the Activity layout. I have created click event of a back Button in an Activity layout. When I click the back Button from Fragment, there no responses at all. But I tried to move the Button outside frame layout within LinearLayout , it working, I don't understand why it is not working properly inside the frame layout. Please help me fix this.

**注意** :我尝试通过单击在片段内部进行操作扩大布局。

**Note** : I trying the click to work inside the fragment by inflating a layout.

推荐答案

这是因为您已设置 android:clickable = true 设为父 RelativeLayout 。因此 RelativeLayout 正在窃取其click事件。尝试将其删除,以使其正常工作。

It's because you've set android:clickable="true" to parent RelativeLayout. So RelativeLayout is stealing its click event. Try removing it, to make it work.

这篇关于Click事件在框架布局内不起作用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆