我有一个按钮,可以将您带到带有简短描述的示例图片,但我想做的是长按,然后让它将用户带到网站以获取更多信息。
这是我的按钮代码(正常)
<Button
android:id="@+id/samplea"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_marginTop="20dp"
android:background="@drawable/samplea_button"
android:longClickable="true"/>
我的java是这个
Button next = (Button) findViewById(R.id.samplea);
next.setOnClickListener(new View.OnClickListener() {
public void onClick(View view) {
final ImageView imageView = (ImageView) findViewById(R.id.iM2);
imageView.setImageResource(R.drawable.samplea_draw);
如何将 longclickable 添加到此以将我带到网站?有人可以帮忙吗?
我已经添加了它,但现在它似乎把我带到了这个网站(在长按之后),而不是图像(在正常的点击之后)这是我的代码:
next1.setOnLongClickListener(new OnLongClickListener() {
public boolean onLongClick(View v) {
// Launch your web intent
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("http://stackoverflow.com/a/13298207/1267661"));
startActivity(intent);
return true;
}
public void onClick(View view) {
final ImageView imageView = (ImageView) findViewById(R.id.iM2);
imageView.setImageResource(R.drawable.samplea_draw);
在“public void onClick(View view) {”下得到一条黄线