- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个 gridView,我想根据单击的项目的位置启动不同的 Intent 。
我已经实例化了以下 onClick 监听器,其中包含位置值:
gridview.setOnItemClickListener(new OnItemClickListener() {
public void onItemClick(AdapterView<?> parent, View v, int position, long id) {
Toast.makeText(HelloGridView.this, "" + position, Toast.LENGTH_SHORT).show();
}
});
但我相信我需要在其中添加一个 if 语句来确定根据此位置启动哪个 Intent 。到目前为止,我已经提出了以下内容,但我不相信这正是我正在寻找的。
if position = 1 { Intent intent = new Intent(this, Activity1.class); }else if position = 2 { Intent intent = new Intent(this, Activity1.class); }
非常感谢任何建议。
/** * 此 Activity 呈现一个带有网格的屏幕,可以在上面添加图像并 * 四处走动。它还定义了屏幕上拖动 View 可以的区域 * 被丢弃。当对象被拖过时向用户提供反馈 * 这些放置区。 * *
* 与上一版本的DragView示例中的DragActivity类似 * application,这里的代码源自Android Launcher代码。 * *
* 原始启动器代码需要长按(按)才能启动 * 拖放序列。如果您想看到该行为,请设置变量 * mLongClickStartsDrag 为 true。下面将其设置为 false,这意味着任何 * 触摸事件启动拖放。 * */
public class DragActivity extends Activity implements View.OnLongClickListener,
View.OnClickListener, View.OnTouchListener // ,
// AdapterView.OnItemClickListener
{
/**
*/
// Constants
private static final int HIDE_TRASHCAN_MENU_ID = Menu.FIRST;
private static final int SHOW_TRASHCAN_MENU_ID = Menu.FIRST + 1;
private static final int ADD_OBJECT_MENU_ID = Menu.FIRST + 2;
private static final int CHANGE_TOUCH_MODE_MENU_ID = Menu.FIRST + 3;
private boolean isErase = true;
private EditText et;
private TextView tx;
/**
*/
// Variables
private DragController mDragController; // Object that handles a drag-drop
// sequence. It intersacts with
// DragSource and DropTarget
// objects.
private DragLayer mDragLayer; // The ViewGroup within which an object can be
// dragged.
private DeleteZone mDeleteZone; // A drop target that is used to remove
// objects from the screen.
private int mImageCount = 0; // The number of images that have been added to
// screen.
private ImageCell mLastNewCell = null; // The last ImageCell added to the
// screen when Add Image is clicked.
private boolean mLongClickStartsDrag = true; // If true, it takes a long
// click to start the drag
// operation.
// Otherwise, any touch
// event starts a drag.
public static final boolean Debugging = false; // Use this to see extra
// toast messages.
/**
*/
// Methods
/**
* Add a new image so the user can move it around. It shows up in the
* image_source_frame part of the screen.
*
* @param resourceId
* int - the resource id of the image to be added
*/
public void addNewImageToScreen(int resourceId) {
if (mLastNewCell != null)
mLastNewCell.setVisibility(View.GONE);
FrameLayout imageHolder = (FrameLayout) findViewById(R.id.image_source_frame);
if (imageHolder != null) {
FrameLayout.LayoutParams lp = new FrameLayout.LayoutParams(
LayoutParams.FILL_PARENT, LayoutParams.FILL_PARENT,
Gravity.CENTER);
ImageCell newView = new ImageCell(this);
newView.setImageResource(resourceId);
imageHolder.addView(newView, lp);
newView.mEmpty = false;
newView.mCellNumber = -1;
mLastNewCell = newView;
mImageCount++;
// Have this activity listen to touch and click events for the view.
newView.setOnClickListener(this);
newView.setOnLongClickListener(this);
newView.setOnTouchListener(this);
}
}
/**
* Add one of the images to the screen so the user has a new image to move
* around. See addImageToScreen.
*
*/
public void addNewImageToScreen() {
int resourceId = R.drawable.sqwhite;
addNewTextToScreen();
int m = mImageCount % 3;
if (m == 1)
resourceId = R.drawable.sqdrk;
else if (m == 2)
resourceId = R.drawable.sqwhite;
addNewImageToScreen(resourceId);
}
private void addNewTextToScreen() {
// TODO Auto-generated method stub
// et.setVisibility(View.VISIBLE);
if (isErase) {
tx.setText(et.getText().toString());
} else {
tx.setText("");
et.setVisibility(View.GONE);
}
isErase = !isErase;
}
/**
* Handle a click on a view.
*
*/
public void onClick(View v) {
if (mLongClickStartsDrag) {
// Tell the user that it takes a long click to start dragging.
//toast("Press and hold to drag an image.");
}
}
/**
* Handle a click of the Add Image button
*
*/
public void onClickAddImage(View v) {
addNewImageToScreen();
}
/**
* onCreate - called when the activity is first created.
*
* Creates a drag controller and sets up three views so click and long click
* on the views are sent to this activity. The onLongClick method starts a
* drag sequence.
*
*/
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.demo);
et = (EditText) findViewById(R.id.editText1);
et.setVisibility(View.INVISIBLE);
tx = (TextView) findViewById(R.id.textView1);
GridView gridView = (GridView) findViewById(R.id.image_grid_view);
if (gridView == null)
toast("Unable to find GridView");
else {
gridView.setAdapter(new ImageCellAdapter(this));
// gridView.setOnItemClickListener (this);
}
mDragController = new DragController(this);
mDragLayer = (DragLayer) findViewById(R.id.drag_layer);
mDragLayer.setDragController(mDragController);
mDragLayer.setGridView(gridView);
mDragController.setDragListener(mDragLayer);
// mDragController.addDropTarget (mDragLayer);
mDeleteZone = (DeleteZone) findViewById(R.id.delete_zone_view);
// Give the user a little guidance.
Toast.makeText(getApplicationContext(),
getResources().getString(R.string.instructions),
Toast.LENGTH_LONG).show();
}
/**
* Build a menu for the activity.
*
*/
public boolean onCreateOptionsMenu(Menu menu) {
super.onCreateOptionsMenu(menu);
menu.add(0, HIDE_TRASHCAN_MENU_ID, 0, "Hide Trashcan").setShortcut('1',
'c');
menu.add(0, SHOW_TRASHCAN_MENU_ID, 0, "Show Trashcan").setShortcut('2',
'c');
menu.add(0, ADD_OBJECT_MENU_ID, 0, "Add View").setShortcut('9', 'z');
menu.add(0, CHANGE_TOUCH_MODE_MENU_ID, 0, "Change Touch Mode");
return true;
}
/**
* Handle a click of an item in the grid of cells.
*
*/
public void onItemClick(AdapterView<?> parent, View v, int position, long id) {
ImageCell i = (ImageCell) v;
trace("onItemClick in view: " + i.mCellNumber);
}
/**
* Handle a long click. If mLongClick only is true, this will be the only
* way to start a drag operation.
*
* @param v
* View
* @return boolean - true indicates that the event was handled
*/
public boolean onLongClick(View v) {
if (mLongClickStartsDrag) {
// trace ("onLongClick in view: " + v + " touchMode: " +
// v.isInTouchMode ());
// Make sure the drag was started by a long press as opposed to a
// long click.
// (Note: I got this from the Workspace object in the Android
// Launcher code.
// I think it is here to ensure that the device is still in touch
// mode as we start the drag operation.)
if (!v.isInTouchMode()) {
toast("isInTouchMode returned false. Try touching the view again.");
return false;
}
return startDrag(v);
}
// If we get here, return false to indicate that we have not taken care
// of the event.
return false;
}
/**
* Perform an action in response to a menu item being clicked.
*
*/
public boolean onOptionsItemSelected(MenuItem item) {
switch (item.getItemId()) {
case HIDE_TRASHCAN_MENU_ID:
if (mDeleteZone != null)
mDeleteZone.setVisibility(View.INVISIBLE);
return true;
case SHOW_TRASHCAN_MENU_ID:
if (mDeleteZone != null)
mDeleteZone.setVisibility(View.VISIBLE);
return true;
case ADD_OBJECT_MENU_ID:
// Add a new object to the screen;
addNewImageToScreen();
return true;
case CHANGE_TOUCH_MODE_MENU_ID:
mLongClickStartsDrag = !mLongClickStartsDrag;
String message = mLongClickStartsDrag ? "Changed touch mode. Drag now starts on long touch (click)."
: "Changed touch mode. Drag now starts on touch (click).";
Toast.makeText(getApplicationContext(), message, Toast.LENGTH_LONG)
.show();
return true;
}
return super.onOptionsItemSelected(item);
}
/**
* This is the starting point for a drag operation if mLongClickStartsDrag
* is false. It looks for the down event that gets generated when a user
* touches the screen. Only that initiates the drag-drop sequence.
*
*/
public boolean onTouch(View v, MotionEvent ev) {
// If we are configured to start only on a long click, we are not going
// to handle any events here.
if (mLongClickStartsDrag)
return false;
boolean handledHere = false;
final int action = ev.getAction();
// In the situation where a long click is not needed to initiate a drag,
// simply start on the down event.
if (action == MotionEvent.ACTION_DOWN) {
handledHere = startDrag(v);
}
return handledHere;
}
/**
* Start dragging a view.
*
*/
public boolean startDrag(View v) {
DragSource dragSource = (DragSource) v;
// We are starting a drag. Let the DragController handle it.
mDragController.startDrag(v, dragSource, dragSource,
DragController.DRAG_ACTION_MOVE);
return true;
}
/**
* Show a string on the screen via Toast.
*
* @param msg
* String
* @return void
*/
public void toast(String msg) {
Toast.makeText(getApplicationContext(), msg, Toast.LENGTH_SHORT).show();
} // end toast
/**
* Send a message to the debug log. Also display it using Toast if Debugging
* is true.
*/
public void trace(String msg) {
Log.d("DragActivity", msg);
if (!Debugging)
return;
toast(msg);
}
} // end class
最佳答案
来自 GridView 的 android 文档:
gridview.setOnItemClickListener(new OnItemClickListener() {
public void onItemClick(AdapterView<?> parent, View v, int position, long id) {
Toast.makeText(HelloGridView.this, "" + position, Toast.LENGTH_SHORT).show();
}
});
编辑:看起来 addNewImageToScreen() 是您添加 ImageCell 的地方,因此假设您可以在该范围内生成 Intent ..
Intent intent = new Intent(this, Activity1.class); // or whatever you want to run
ImageCell newView = ...
newView.setTag( intent );
然后在你的 onItemClick 中: 公共(public)无效onItemClick(AdapterView父级, View v,int位置,长id){ Toast.makeText(HelloGridView.this, ""+ 位置, Toast.LENGTH_SHORT).show(); Intent intent = (Intent) v.getTag(); //现在你可以根据你的 Intent 启动Activity.. }
关于java - 将 onClick 监听器添加到 gridView 项目(根据位置启动独特的 Intent ),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20982317/
我正在尝试获取从过去的 startposition/location 到当前移动的 currentposition/location 的距离(以米为单位)。 我确实有工作正常的currentposit
所以我有一堆绝对覆盖的 div。用户通过在叠加层上拖动来创建方形 div。如果您要创建一个 div,然后放大和缩小,div 会保持在同一位置,因为它对叠加层是绝对的,如前所述。 然而问题就出在这里。您
我想找到 View 在显示屏幕上的位置。 为此,我使用了 view.getLeft() 、view.getBottom() 、view.getRight() 等方法> , view.getTop()。
我有一个看起来像这样的 View 层次结构(基于其他答案和 Apple 的使用 UIScrollView 的高级 AutoLayout 指南): ScrollView 所需的2 个步骤是: 为 Scr
所以我有一个名为 MARKS 的表,我有这些列 STUDENT_ID, CLASSFORM_NAME, ACADEMIC_YEAR, TERM, SUBJECT_NAME, TOTAL_MARKS
我有一个问题我无法理解,请帮助: 我开发了带有图像的 html 页面,并使用 jQuery UI 帮助使它们可拖动,我将这些图像位置设置为相对位置并给出了左侧和顶部像素,这是页面的链接 http://
我正在尝试创建一个 CSS 动画,它在 sprite 表中循环播放 16 个图像,给人一种幽灵“漂浮”的错觉。动画通过在 background-position 位置之间移动以显示不同状态的幽灵来实现
我正在创建这个网站的 WebView https://nearxt.com/打开时询问位置但是当我使用此链接在 flutter 中创建 webview 时那么它就无法定位我还在应用程序中定义了位置,但
我正在以编程方式创建一个需要跨越 2 个屏幕的窗口。正在创建的窗口的大小是正确的,但窗口大约从第一个屏幕的一半开始。我可以将它拖回第一个屏幕的开头,NSWindow 非常适合。 我只需要知道在窗口的起
位置“/”的匹配叶路由没有元素。这意味着默认情况下它将呈现一个空值,从而导致一个“空”页面 //App.js File import { BrowserRouter as Router, Routes
我有一个运行 Ubuntu 和 Apache 的 VPS 例如,假设地址是:5.5.5.5 在 VPS 上,我有一个名为 eggdrop 的用户(除了我的 root 用户)。 用户 eggdrop 有
我有一个 JLabel与 ImageIcon ,我使用 setIcon() JLabel中的函数. ImageIcon然后上来,坐在我的JLabel 的文字左侧.是否有可能拥有 ImageIcon在文
我的图中有节点,它们的 xlabels 位于它们的左上方。我怎样才能改变这个位置?我希望 xlabels 正好位于节点本身的旁边。 最佳答案 xlp是你想要的属性,但它没有做任何事情。 你不能改变位置
我对基本的 VIM 功能有疑问:(我尝试谷歌搜索但找不到答案) 如何列出所有自定义功能。(我做了 :function 并且不能找到我的自定义函数) 如何获得自定义函数列表中的函数(或它们的存储位置)。
我是 PHP 的新手,虽然我一直在搜索,但我不知道该怎么做。 我知道可以使用 Location("some page") 进行重定向。我还读到,只要没有向用户显示任何内容,它就可以工作。 我想做的是:
如果在 jgrowl.css 中位置更改为“center”,我如何将其覆盖为默认值,即“top-right” $.jGrowl(data, { header: 'data', an
我需要根据用户是否滑动屏幕顶部、屏幕中间或屏幕底部来触发不同的事件。我正在尝试找出最好/最简单的方法来做到这一点,因为我很确定没有办法从 UISwipeGestureRecognizer 获取位置。
我需要枚举用delphi编写的外部应用程序中使用的类 ,因此我需要访问VMT表以获取该信息,但是我找不到任何有关如何在exe(由delphi生成)文件中找到VMT(虚拟方法表)的位置(地址)的文档。
在 D2010 (unicode) 中是否有像 Pos 这样不区分大小写的类似函数? 我知道我可以使用 Pos(AnsiUpperCase(FindString), AnsiUpperCase(Sou
我正在尝试为我的reveal.js 演示文稿制作一个标题,该标题会粘贴在屏幕顶部。标题中的内容在每张幻灯片的基础上都是动态的,因此我必须将标记放在 section 标记中。 显然,如果标记在 sect
我是一名优秀的程序员,十分优秀!