Android开发实用小工具十——进制转换工具

这篇博客介绍了如何在Android平台上开发一个进制转换工具,包括效果展示、代码实现,详细讲解了样式布局和主代码部分,提供了一个实用的小工具开发案例。
摘要由CSDN通过智能技术生成


前言

进制转换工具的开发与实现。


一、效果展示

进制转换工具的开发与实现
进制转换工具的开发与实现

二、代码

准备工作与我开发的另一个小工具(长度转换工具)所用一致,详情请看我上一篇文章。
链接: Android开发实用小工具二——长度转换工具

1.样式布局

本项目相较于前几个小工具的开发,多了几个数值按钮。

res/layout/activity_decimal_conversion.xml.xml :

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#ffe9ecf1"
    android:orientation="vertical">

    <RelativeLayout 
        android:layout_width="match_parent"
        android:layout_height="50dp"
        android:background="@color/white">

        <ImageView
            android:id="@+id/iv_back"
            android:layout_width="40dp"
            android:layout_height="match_parent"
            android:layout_alignParentLeft="true"
            android:padding="10dp"
            android:scaleType="fitCenter"
            android:src="@drawable/ic_back" />

        <TextView
            android:id="@+id/tv_title"
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:layout_centerInParent="true"
            android:gravity="center"
            android:textColor="#ff000000"
            android:textSize="17sp"
            android:text="进制转换工具" />

    </RelativeLayout>

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="1"
        android:orientation="horizontal">

        <Spinner
            android:id="@+id/sp_select1"
            android:layout_width="0dp"
            android:layout_height="match_parent"
            android:layout_weight="5"
            android:dropDownWidth="215dp"
            android:popupBackground="@drawable/shape_module"
            android:spinnerMode="dropdown" />

        <LinearLayout
            android:layout_width="0dp"
            android:layout_height="match_parent"
            android:layout_weight="6"
            android:orientation="vertical">

            <TextView
                android:id="@+id/tv_value1"
                android:layout_width="match_parent"
                android:layout_height="0dp"
                android:layout_marginRight="10dp"
                android:layout_weight="2"
                android:gravity="right|bottom"
                android:text="0"
                android:textColor="#ffff8800"
                android:textSize="30sp" />

            <TextView
                android:id="@+id/tv_unit1"
                android:layout_width="match_parent"
                android:layout_height="0dp"
                android:layout_marginRight="10dp"
                android:layout_weight="1"
                android:gravity="right"
                android:textColor="#FF959595"
                android:textSize="13sp"
                tools:text="m" />

        </LinearLayout>

    </LinearLayout>

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="1"
        android:orientation="horizontal">

        <Spinner
            android:id="@+id/sp_select2"
            android:layout_width="0dp"
            android:layout_height="match_parent"
            android:layout_weight="5"
            android:dropDownWidth="215dp"
            android:popupBackground="@drawable/shape_module"
            android:spinnerMode="dropdown" />

        <LinearLayout
            android:layout_width="0dp"
            android:layout_height="match_parent"
            android:layout_weight="6"
            android:orientation="vertical">

            <TextView
                android:id="@+id/tv_value2"
                android:layout_width="match_parent"
                android:layout_height="0dp"
                android:layout_marginRight="10dp"
                android:layout_weight="2"
                android:gravity="right|bottom"
                android:text="0"
                android:textColor="#ff000000"
                android:textSize="30sp" />

            <TextView
                android:id="@+id/tv_unit2"
                android:layout_width="match_parent"
                android:layout_height="0dp"
                android:layout_marginRight="10dp"
                android:layout_weight="1"
                android:gravity="right"
                android:textColor="#FF959595"
                android:textSize="13sp"
                tools:text="chi" />

        </LinearLayout>

    </LinearLayout>

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="@drawable/shape_module"
        android:orientation="vertical"
        android:padding="20dp">

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="0dp"
            android:layout_weight="4"
            android:orientation="vertical">

            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="0dp"
                android:layout_weight="1"
                android:orientation="horizontal">

                <Button
                    android:id="@+id/btn_clr"
                    android:layout_width="0dp"
                    android:layout_height="match_parent"
                    android:layout_margin="6dp"
                    android:layout_weight="1"
                    android:background="@drawable/radio_button_selector"
                    android:padding="10dp"
                    android:text="C"
                    android:textColor="#FF0080FF"
                    android:textSize="35sp" />

                <ImageButton
                    android:id="@+id/iv_del"
                    android:layout_width="0dp"
                    android:layout_height="match_parent"
                    android:layout_margin="6dp"
                    android:layout_weight="1"
                    android:background="@drawable/radio_button_selector"
                    android:padding="10dp"
                    android:src="@drawable/ic_delete" />

                <Button
                    android:id="@+id/btn_f"
                    android:layout_width
Android Studio中,将图片上传到MySQL数据库通常涉及以下几个步骤: 1. **获取用户选择的图片**: 使用`ACTION_PICK`或`ACTION_GET_CONTENT`启动系统的文件选择器,让用户从相册或相机选取图片。例如: ```java Intent intent = new Intent(Intent.ACTION_PICK, MediaStore.Images.Media.EXTERNAL_CONTENT_URI); startActivityForResult(intent, SELECT_IMAGE_REQUEST_CODE); ``` 2. **读取图片数据**: 当用户选择图片后,你需要处理`onActivityResult`回调并读取图片内容,可以使用`BitmapFactory`: ```java @Override protected void onActivityResult(int requestCode, int resultCode, Intent data) { if (requestCode == SELECT_IMAGE_REQUEST_CODE && resultCode == RESULT_OK) { Uri selectedImageUri = data.getData(); Bitmap bitmap = BitmapFactory.decodeFile(selectedImageUri.getPath()); // 现在你可以对bitmap进行操作 } } ``` 3. **将图片转换为Base64字符串**: 将Bitmap转换成String以便存储在纯文本字段中,因为MySQL并不直接支持BLOB类型存储二进制数据,可以用Base64编码: ```java ByteArrayOutputStream outputStream = new ByteArrayOutputStream(); bitmap.compress(Bitmap.CompressFormat.JPEG, 100, outputStream); String imageBase64 = Base64.encodeToString(outputStream.toByteArray(), Base64.DEFAULT); ``` 4. **连接到MySQL服务器**: 使用如MySqlHelper、JDBC等库连接数据库,并创建一个PreparedStatement准备插入数据,包括图片Base64字符串: ```java String query = "INSERT INTO images (image_base64) VALUES (?)"; PreparedStatement pstmt = connection.prepareStatement(query); pstmt.setString(1, imageBase64); pstmt.executeUpdate(); ``` 5. **异常处理**: 别忘了处理可能出现的网络错误、SQL异常和其他潜在问题。 记得在实际应用中添加适当的错误处理和权限请求,以及考虑使用ORM框架(如Room)简化数据库操作。
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

此名哥已占

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值