android开发如何点击一个文本框跳转到网页
答案:4 悬赏:40 手机版
解决时间 2021-04-10 10:06
- 提问者网友:心牵心
- 2021-04-09 16:17
android开发如何点击一个文本框跳转到网页
最佳答案
- 五星知识达人网友:神也偏爱
- 2021-04-09 17:42
在文本框获取焦点时,触发下面的代码即可:
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("www.sohu.com"));
startActivity(intent);
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("www.sohu.com"));
startActivity(intent);
全部回答
- 1楼网友:时间的尘埃
- 2021-04-09 20:13
<TextView
android:id="@+id/tv"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:autoLink="web"
android:background="@color/state_item_pressed"
android:text="跳转到web;www.baidu.com" />
- 2楼网友:思契十里
- 2021-04-09 19:49
android 开发 显示到哪去? 给button添加单击监听事件,然后就可以获取两个输入框的值,怎么显示就是你的事情了,用toast也可以,跳转到另外一个
- 3楼网友:大漠
- 2021-04-09 19:12
public class mysearch extends appcompatactivity implements textwatcher{
edittext searchinput;
public void oncreate((bundle savedinstancestate){
super.oncreate(savedinstancestate);
setcontentview(r.layout.activity_main);
searchinput = (edittext)mmainsearchview.findviewbyid(r.id.search_input);
searchinput.addtextchangedlistener(this);
}
@override
public void beforetextchanged(charsequence s, int start, int count, int after) {
}
@override
public void ontextchanged(charsequence s, int start, int before, int count) {
}
@override
public void aftertextchanged(editable s) {
if (s.length() != 0){
(跳转的具体实现!)
}
}
}
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯