admin 管理员组文章数量: 887021
Android开发打开手机自带浏览器
创建一个页面,点击按钮跳转到手机自带浏览器并打开指定网站。
1.首先编写页面布局
在activity_main.xml文件中编辑页面布局
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android/apk/res/android"
xmlns:tools="http://schemas.android/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/openbrowser"//引用图片
tools:context=".MainActivity">
<ImageButton
android:id="@+id/main_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"
android:layout_alignParentTop="true"
android:layout_marginLeft="20dp"
android:layout_marginStart="20dp"
android:layout_marginTop="30dp"
android:background="@drawable/click">//引用图片
</ImageButton>
</RelativeLayout>
2.在MainActivity.java实现逻辑功能
package com.example.openbrowser;
import androidx.appcompat.app.AppCompatActivity;
import android.content.Intent;
import android.net.Uri;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.ImageButton;
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
ImageButton button= (ImageButton)findViewById(R.id.main_button);
button.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
Intent intent = new Intent();
intent.setAction("android.intent.action.VIEW");//打开手机自带浏览器
intent.setData(Uri.parse("https://www.blog.csdn/qq_50982405"));//设置
//需要打开的网址
startActivity(intent);
}
});
}
}
正常运行,非常的不错。
说一下遇到的问题
我用的Buootn不能用background设置背景图片,而是改用ImageButton设置的背景图片。
版权声明:本文标题:Android开发打开手机自带浏览器 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.freenas.com.cn/jishu/1726468105h965613.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论