一月二十七日 安卓开发六

先建立一个简单页面 完成数据库操作逻辑

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@drawable/ic_launcher_background"
    tools:context=".MainActivity"
    android:orientation="vertical">


    <TextView

        android:id="@+id/et1"
        android:layout_marginTop="150dp"
        android:layout_width="match_parent"
        android:layout_height="75dp"
        android:gravity="center"
        android:text="安卓访问MYSQL数据库案例"
        android:textColor="#50120D"
        android:textSize="25sp" />


    <Button
        android:id="@+id/et2"
        android:layout_width="150dp"
        android:layout_height="40dp"
        android:layout_gravity="center"
        android:layout_marginTop="10dp"
        android:text="查询用户数量"
        android:textSize="15sp" />

    <TextView

        android:id="@+id/et3"
        android:layout_width="match_parent"
        android:layout_height="75dp"
        android:layout_marginTop="150dp"
        android:gravity="center"
        android:text="用户数量:"
        android:textColor="#50120D"
        android:textSize="25sp" />


</LinearLayout>

 要求点击查询用户数量 在下方的用户数量会显示

 

posted @ 2024-02-29 13:45  财神给你送元宝  阅读(6)  评论(0编辑  收藏  举报