我实际上已经阅读了几个答案,但它们与我实现点击响应的简单方式如此不同,我想知道是否有一种方法可以在我正在做的事情中添加一些简单的东西来创建 onLongClick 响应。
基本上,我所有的 XML 代码都是用这样的语句编写的:
android:onClick="onSync"
然后我的Java有:
public void onSync(View v) {
...
Toast toast3=Toast.makeText(this, "Sync was pressed",Toast.LENGTH_SHORT);
toast3.show();
}
我想做的是有一个不同的功能,当按钮被长按时调用。现在,长按会导致与短按相同的动作。
具体来说,我想知道如何与这样的例程交互:
public void onSyncLong(View v) {
...
Toast toast3=Toast.makeText(this, "Long Sync was pressed",Toast.LENGTH_SHORT);
toast3.show();
}
我当然会感谢任何关于这个问题的帮助。如果回复告诉我在 XML 和 Jave 中做什么,那就太好了。非常感谢。
- - - - - - - - - - - - - - 更新 - - - - - - - - - - - ---
这是我的 onCreate 代码:
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
getWindow().addFlags(WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON);
setContentView(R.layout.start_meters);
textLL = (TextView)findViewById(R.id.textLL);
textTimer = (TextView)findViewById(R.id.textTimer);
textTimeToLine = (TextView)findViewById(R.id.textTimeToLine);
Button button = (Button) findViewById(R.id.button_sync);
button.setOnLongClickListener(new OnLongClickListener() {
@Override
public boolean onLongClick(View v) {
// TODO Auto-generated method stub
return true;
}
});
}
这是按钮 XML 段
<Button
android:id="@+id/buttonSync"
style="?android:attr/buttonStyleSmall"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:text="Gun/Sync"
android:onClick="onSync"
android:textSize="@dimen/font_small"
android:background="@drawable/round_button"
android:padding="3sp"
android:longClickable="true"/>
------------最终更新----------------
这是工作代码:
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
getWindow().addFlags(WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON);
setContentView(R.layout.start_meters);
textLL = (TextView)findViewById(R.id.textLL);
textTimer = (TextView)findViewById(R.id.textTimer);
textTimeToLine = (TextView)findViewById(R.id.textTimeToLine);
Button button = (Button) findViewById(R.id.buttonSync);
button.setOnLongClickListener(new OnLongClickListener() {
@Override
public boolean onLongClick(View v) {
StartLine2.startTime = pTime + 1000*60*5;
return true;
}
});
}