安卓开发学习之设计三种计算机界面

简介: 设计三种计算机界面

## 请设计下面的三种计算器的UI:


1.简单的计算器

caculator1.png



2.科学计算器

caculator2.png



3.程序计算器

caculator3.png

不用实现具体功能,只需设计界面即可!

### 为了更好的在三个界面之间跳转,添加一个主界面。

#### activity_main.xml

线性布局中添加4个按钮


```xml

<?xml version="1.0" encoding="utf-8"?>

<androidx.constraintlayout.widget.ConstraintLayout 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"

   tools:context=".MainActivity">



   <LinearLayout

       android:layout_width="431dp"

       android:layout_height="669dp"

       android:orientation="vertical"

       tools:ignore="MissingConstraints"

       tools:layout_editor_absoluteX="-4dp"

       tools:layout_editor_absoluteY="57dp">



       <Button

           android:id="@+id/button21"

           android:layout_width="match_parent"

           android:layout_height="wrap_content"

           android:text="简单计算器" />


       <Button

           android:id="@+id/button22"

           android:layout_width="match_parent"

           android:layout_height="wrap_content"

           android:text="科学计算器" />


       <Button

           android:id="@+id/button23"

           android:layout_width="match_parent"

           android:layout_height="wrap_content"

           android:text="程序计算器" />


       <Button

           android:id="@+id/button24"

           android:layout_width="match_parent"

           android:layout_height="wrap_content"

           android:text="退出" />


   </LinearLayout>



</androidx.constraintlayout.widget.ConstraintLayout>

```

#### 界面效果:

屏幕截图 2022-04-06 180941.png

### 简单计算器:

#### chengxujishuanqi.xml


```xml

<?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"

   android:orientation="vertical"

   android:layout_width="match_parent"

   android:layout_height="match_parent"

   android:weightSum="7">


   <LinearLayout

       android:layout_width="match_parent"

       android:layout_height="wrap_content"

       android:orientation="vertical">


       <TextView

           android:layout_width="match_parent"

           android:layout_height="match_parent"

           android:gravity="center|right"

           android:text="0"

           android:textSize="50sp" />


   </LinearLayout>


   <LinearLayout

       android:layout_width="match_parent"

       android:layout_height="wrap_content"

       android:orientation="horizontal"

       android:layout_weight="1"

       android:weightSum="4">


       <Button

           android:id="@+id/button1"

           android:layout_width="0dp"

           android:layout_height="match_parent"

           android:layout_weight="1"

           android:text="退格"

           android:textSize="30sp" />


       <Button

           android:id="@+id/button2"

           android:layout_width="0dp"

           android:layout_height="match_parent"

           android:layout_weight="1"

           android:text="清除"

           android:textSize="30sp" />


       <Button

           android:id="@+id/button3"

           android:layout_width="0dp"

           android:layout_height="match_parent"

           android:layout_weight="1"

           android:text="±"

           android:textSize="40sp" />


       <Button

           android:id="@+id/button4"

           android:layout_width="0dp"

           android:layout_height="match_parent"

           android:layout_weight="1"

           android:text="+"

           android:textSize="40sp" />

   </LinearLayout>


   <LinearLayout

       android:layout_width="match_parent"

       android:layout_height="wrap_content"

       android:layout_weight="1"

       android:orientation="horizontal"

       android:weightSum="4">


       <Button

           android:id="@+id/button5"

           android:layout_width="0dp"

           android:layout_height="match_parent"

           android:layout_weight="1"

           android:text="7"

           android:textSize="40sp" />


       <Button

           android:id="@+id/button6"

           android:layout_width="0dp"

           android:layout_height="match_parent"

           android:layout_weight="1"

           android:text="8"

           android:textSize="40sp" />


       <Button

           android:id="@+id/button7"

           android:layout_width="0dp"

           android:layout_height="match_parent"

           android:layout_weight="1"

           android:text="9"

           android:textSize="40sp" />


       <Button

           android:id="@+id/button8"

           android:layout_width="0dp"

           android:layout_height="match_parent"

           android:layout_weight="1"

           android:text="—"

           android:textSize="40sp" />

   </LinearLayout>


   <LinearLayout

       android:layout_width="match_parent"

       android:layout_height="wrap_content"

       android:layout_weight="1"

       android:orientation="horizontal"

       android:weightSum="4">


       <Button

           android:id="@+id/button9"

           android:layout_width="0dp"

           android:layout_height="match_parent"

           android:layout_weight="1"

           android:text="4"

           android:textSize="40sp"/>


       <Button

           android:id="@+id/button10"

           android:layout_width="0dp"

           android:layout_height="match_parent"

           android:layout_weight="1"

           android:text="5"

           android:textSize="40sp"/>


       <Button

           android:id="@+id/button11"

           android:layout_width="0dp"

           android:layout_height="match_parent"

           android:layout_weight="1"

           android:text="6"

           android:textSize="40sp"/>


       <Button

           android:id="@+id/button12"

           android:layout_width="0dp"

           android:layout_height="match_parent"

           android:layout_weight="1"

           android:text="*"

           android:textSize="40sp"/>

   </LinearLayout>


   <LinearLayout

       android:layout_width="match_parent"

       android:layout_height="wrap_content"

       android:layout_weight="1"

       android:orientation="horizontal"

       android:weightSum="4">


       <Button

           android:id="@+id/button13"

           android:layout_width="0dp"

           android:layout_height="match_parent"

           android:layout_weight="1"

           android:text="1"

           android:textSize="40sp"/>


       <Button

           android:id="@+id/button14"

           android:layout_width="0dp"

           android:layout_height="match_parent"

           android:layout_weight="1"

           android:text="2"

           android:textSize="40sp"/>


       <Button

           android:id="@+id/button15"

           android:layout_width="0dp"

           android:layout_height="match_parent"

           android:layout_weight="1"

           android:text="3"

           android:textSize="40sp"/>


       <Button

           android:id="@+id/button16"

           android:layout_width="0dp"

           android:layout_height="match_parent"

           android:layout_weight="1"

           android:text="/"

           android:textSize="40sp"/>

   </LinearLayout>


   <LinearLayout

       android:layout_width="match_parent"

       android:layout_height="wrap_content"

       android:layout_weight="1"

       android:orientation="horizontal"

       android:weightSum="4">


       <Button

           android:id="@+id/button17"

           android:layout_width="0dp"

           android:layout_height="match_parent"

           android:layout_weight="1"

           android:text="0"

           android:textSize="40sp"/>


       <Button

           android:id="@+id/button18"

           android:layout_width="0dp"

           android:layout_height="match_parent"

           android:layout_weight="1"

           android:text="."

           android:textSize="40sp"/>


       <Button

           android:id="@+id/button19"

           android:layout_width="0dp"

           android:layout_height="match_parent"

           android:layout_weight="1"

           android:text="1/x"

           android:textSize="30sp"/>


       <Button

           android:id="@+id/button20"

           android:layout_width="0dp"

           android:layout_height="match_parent"

           android:layout_weight="1"

           android:text="="

           android:textSize="40sp"/>

   </LinearLayout>


</LinearLayout>

```

#### 界面效果:

屏幕截图 2022-04-06 181648.png




### 科学计算器:

#### kexuejishuanqi.xml


```xml

<?xml version="1.0" encoding="utf-8"?>

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"

   android:orientation="vertical" android:layout_width="match_parent"

   android:layout_height="match_parent">


   <LinearLayout

       android:layout_width="match_parent"

       android:layout_height="match_parent"

       android:orientation="vertical">


       <TextView

           android:layout_width="match_parent"

           android:layout_height="wrap_content"

           android:gravity="center|right"

           android:text="0"

           android:textSize="50sp"/>


       <TableLayout

           android:layout_width="match_parent"

           android:layout_height="21dp"

           android:layout_margin="10dp"

           android:padding="0dp">


           <TableRow

               android:layout_width="match_parent"

               android:layout_height="wrap_content">


               <RadioGroup

                   android:layout_width="match_parent"

                   android:layout_height="wrap_content"

                   android:layout_weight="1"

                   android:orientation="horizontal">


                   <RadioButton

                       android:layout_width="wrap_content"

                       android:layout_height="wrap_content"

                       android:layout_weight="1"

                       android:text="角度"

                       android:textSize="15dp" />


                   <RadioButton

                       android:layout_width="wrap_content"

                       android:layout_height="wrap_content"

                       android:layout_weight="1"

                       android:text="弧度"

                       android:textSize="15dp" />


                   <RadioButton

                       android:layout_width="wrap_content"

                       android:layout_height="wrap_content"

                       android:layout_weight="1"

                       android:text="梯度"

                       android:textSize="15dp" />

               </RadioGroup>

           </TableRow>


       </TableLayout>


       <TableLayout

           android:layout_width="match_parent"

           android:layout_height="215dp">


           <TableRow

               android:layout_width="match_parent"

               android:layout_height="487dp"

               android:layout_weight="1"

               android:padding="0dp">


               <Button

                   android:layout_height="match_parent"

                   android:layout_weight="1"

                   android:text="SIN" />


               <Button

                   android:layout_height="match_parent"

                   android:layout_weight="1"

                   android:text="COS" />


               <Button

                   android:layout_height="match_parent"

                   android:layout_weight="1"

                   android:text="TAN" />


               <Button

                   android:layout_height="match_parent"

                   android:layout_weight="1"

                   android:text="COT"></Button>



           </TableRow>


           <TableRow

               android:layout_width="match_parent"

               android:layout_height="487dp"

               android:layout_weight="1"

               android:padding="0dp">


               <Button

                   android:layout_height="match_parent"

                   android:layout_weight="1"

                   android:text="ASIN"></Button>


               <Button

                   android:layout_height="match_parent"

                   android:layout_weight="1"

                   android:text="ACOS"></Button>


               <Button

                   android:layout_height="match_parent"

                   android:layout_weight="1"

                   android:text="ATAN"></Button>


               <Button

                   android:layout_height="match_parent"

                   android:layout_weight="1"

                   android:text="ACOT"></Button>



           </TableRow>


           <TableRow

               android:layout_width="match_parent"

               android:layout_height="487dp"

               android:layout_weight="1"

               android:padding="0dp">


               <Button

                   android:layout_height="match_parent"

                   android:layout_weight="1"

                   android:text="SINH"></Button>


               <Button

                   android:layout_height="match_parent"

                   android:layout_weight="1"

                   android:text="COSH"></Button>


               <Button

                   android:layout_height="match_parent"

                   android:layout_weight="1"

                   android:text="TANH"></Button>


               <Button

                   android:layout_height="match_parent"

                   android:layout_weight="1"

                   android:text="COTH"></Button>



           </TableRow>


           <TableRow

               android:layout_width="match_parent"

               android:layout_height="487dp"

               android:layout_weight="1"

               android:padding="0dp">


               <Button

                   android:layout_height="match_parent"

                   android:layout_weight="1"

                   android:text="ASINH"></Button>


               <Button

                   android:layout_height="match_parent"

                   android:layout_weight="1"

                   android:text="ACOSH"></Button>


               <Button

                   android:layout_height="match_parent"

                   android:layout_weight="1"

                   android:text="ATANH"></Button>


               <Button

                   android:layout_height="match_parent"

                   android:layout_weight="1"

                   android:text="ACOTH"></Button>



           </TableRow>


           <TableRow

               android:layout_width="match_parent"

               android:layout_height="487dp"

               android:layout_weight="1"

               android:padding="0dp">


               <Button

                   android:layout_height="match_parent"

                   android:layout_weight="1"

                   android:text="LN"></Button>


               <Button

                   android:layout_height="match_parent"

                   android:layout_weight="1"

                   android:text="LOG10"></Button>


               <Button

                   android:layout_height="match_parent"

                   android:layout_weight="1"

                   android:text="N!"></Button>


               <Button

                   android:layout_height="match_parent"

                   android:layout_weight="1"

                   android:text="X^Y"></Button>



           </TableRow>


           <TableRow

               android:layout_width="match_parent"

               android:layout_height="487dp"

               android:layout_weight="1"

               android:padding="0dp">


               <Button

                   android:layout_height="match_parent"

                   android:layout_weight="1"

                   android:text="E^X"></Button>


               <Button

                   android:layout_height="match_parent"

                   android:layout_weight="1"

                   android:text="π"></Button>


               <Button

                   android:layout_height="match_parent"

                   android:layout_weight="1"

                   android:text="("></Button>


               <Button

                   android:layout_height="match_parent"

                   android:layout_weight="1"

                   android:text=")"></Button>



           </TableRow>



       </TableLayout>


       <TableLayout

           android:layout_width="match_parent"

           android:layout_height="186dp">


           <TableRow

               android:layout_width="match_parent"

               android:layout_height="487dp"

               android:layout_weight="1"

               android:padding="0dp">


               <Button

                   android:layout_height="match_parent"

                   android:layout_weight="1"

                   android:text="退格"></Button>


               <Button

                   android:layout_height="match_parent"

                   android:layout_weight="1"

                   android:text="清除"></Button>


               <Button

                   android:layout_height="match_parent"

                   android:layout_weight="1"

                   android:text="±"></Button>


               <Button

                   android:layout_height="match_parent"

                   android:layout_weight="1"

                   android:text="+"></Button>



           </TableRow>


           <TableRow

               android:layout_width="match_parent"

               android:layout_height="487dp"

               android:layout_weight="1"

               android:padding="0dp">


               <Button

                   android:layout_height="match_parent"

                   android:layout_weight="1"

                   android:text="7"></Button>


               <Button

                   android:layout_height="match_parent"

                   android:layout_weight="1"

                   android:text="8"></Button>


               <Button

                   android:layout_height="match_parent"

                   android:layout_weight="1"

                   android:text="9"></Button>


               <Button

                   android:layout_height="match_parent"

                   android:layout_weight="1"

                   android:text="-"></Button>



           </TableRow>


           <TableRow

               android:layout_width="match_parent"

               android:layout_height="487dp"

               android:layout_weight="1"

               android:padding="0dp">


               <Button

                   android:layout_height="match_parent"

                   android:layout_weight="1"

                   android:text="4"></Button>


               <Button

                   android:layout_height="match_parent"

                   android:layout_weight="1"

                   android:text="5"></Button>


               <Button

                   android:layout_height="match_parent"

                   android:layout_weight="1"

                   android:text="6"></Button>


               <Button

                   android:layout_height="match_parent"

                   android:layout_weight="1"

                   android:text="*"></Button>



           </TableRow>


           <TableRow

               android:layout_width="match_parent"

               android:layout_height="487dp"

               android:layout_weight="1"

               android:padding="0dp">


               <Button

                   android:layout_height="match_parent"

                   android:layout_weight="1"

                   android:text="1"></Button>


               <Button

                   android:layout_height="match_parent"

                   android:layout_weight="1"

                   android:text="2"></Button>


               <Button

                   android:layout_height="match_parent"

                   android:layout_weight="1"

                   android:text="3"></Button>


               <Button

                   android:layout_height="match_parent"

                   android:layout_weight="1"

                   android:text="/"></Button>



           </TableRow>


           <TableRow

               android:layout_width="match_parent"

               android:layout_height="487dp"

               android:layout_weight="1"

               android:padding="0dp">


               <Button

                   android:layout_height="match_parent"

                   android:layout_weight="1"

                   android:text="0"></Button>


               <Button

                   android:layout_height="match_parent"

                   android:layout_weight="1"

                   android:text="."></Button>


               <Button

                   android:layout_height="match_parent"

                   android:layout_weight="1"

                   android:text="1/X"></Button>


               <Button

                   android:layout_height="match_parent"

                   android:layout_weight="1"

                   android:text="="></Button>



           </TableRow>



       </TableLayout>


   </LinearLayout>


</LinearLayout>

```


#### 界面效果:

屏幕截图 2022-04-06 181724.png



### 程序计算器:

#### chengxujishuanqi.xml


```xml

<?xml version="1.0" encoding="utf-8"?>

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"

   android:orientation="vertical" android:layout_width="match_parent"

   android:layout_height="match_parent">


   <LinearLayout

       android:layout_width="match_parent"

       android:layout_height="match_parent"

       android:orientation="vertical">


       <TextView

           android:layout_width="match_parent"

           android:layout_height="wrap_content"

           android:gravity="center|right"

           android:text="0"

           android:textSize="50sp" />


       <TableLayout

           android:layout_width="match_parent"

           android:layout_height="21dp"

           android:layout_margin="10dp"

           android:padding="0dp">


           <TableRow

               android:layout_width="match_parent"

               android:layout_height="wrap_content">


               <RadioGroup

                   android:layout_width="match_parent"

                   android:layout_height="wrap_content"

                   android:layout_weight="1"

                   android:orientation="horizontal">


                   <RadioButton

                       android:layout_width="76dp"

                       android:layout_height="wrap_content"

                       android:layout_weight="1"

                       android:text="十六进制"

                       android:textSize="15dp" />


                   <RadioButton

                       android:layout_width="wrap_content"

                       android:layout_height="wrap_content"

                       android:layout_weight="1"

                       android:text="二进制"

                       android:textSize="15dp" />


                   <RadioButton

                       android:layout_width="wrap_content"

                       android:layout_height="wrap_content"

                       android:layout_weight="1"

                       android:text="八进制"

                       android:textSize="15dp" />


                   <RadioButton

                       android:layout_width="wrap_content"

                       android:layout_height="wrap_content"

                       android:layout_weight="1"

                       android:text="十进制"

                       android:textSize="15dp" />

               </RadioGroup>

           </TableRow>


       </TableLayout>


       <TableLayout

           android:layout_width="match_parent"

           android:layout_height="21dp"

           android:layout_margin="10dp"

           android:padding="0dp">


           <TableRow

               android:layout_width="match_parent"

               android:layout_height="wrap_content">


               <RadioGroup

                   android:layout_width="match_parent"

                   android:layout_height="wrap_content"

                   android:layout_weight="1"

                   android:orientation="horizontal">


                   <RadioButton

                       android:layout_width="wrap_content"

                       android:layout_height="wrap_content"

                       android:layout_weight="1"

                       android:text="八字节"

                       android:textSize="15dp" />


                   <RadioButton

                       android:layout_width="wrap_content"

                       android:layout_height="wrap_content"

                       android:layout_weight="1"

                       android:text="四字节"

                       android:textSize="15dp" />


                   <RadioButton

                       android:layout_width="wrap_content"

                       android:layout_height="wrap_content"

                       android:layout_weight="1"

                       android:text="二字节"

                       android:textSize="15dp" />


                   <RadioButton

                       android:layout_width="wrap_content"

                       android:layout_height="wrap_content"

                       android:layout_weight="1"

                       android:text="单字节"

                       android:textSize="15dp" />

               </RadioGroup>

           </TableRow>


       </TableLayout>



       <GridLayout

           android:layout_width="match_parent"

           android:layout_height="wrap_content"

           android:columnCount="4"

           android:orientation="horizontal"

           android:rowCount="3">


           <Button

               android:layout_width="102dp"

               android:layout_height="match_parent"

               android:text="NOT"

               android:textColor="#FBF9F9" />


           <Button

               android:layout_width="103dp"

               android:layout_height="match_parent"

               android:text="AND" />


           <Button

               android:layout_width="104dp"

               android:layout_height="match_parent"

               android:text="OR" />


           <Button

               android:layout_width="99dp"

               android:layout_height="match_parent"

               android:text="XOR" />


           <Button

               android:layout_width="104dp"

               android:layout_height="match_parent"

               android:text="循环左移" />


           <Button

               android:layout_width="104dp"

               android:layout_height="match_parent"

               android:text="循环右移" />


           <Button

               android:layout_width="104dp"

               android:layout_height="match_parent"

               android:text="左移" />


           <Button

               android:layout_width="102dp"

               android:layout_height="match_parent"

               android:text="MOD" />


           <Button

               android:layout_columnSpan="2"

               android:layout_gravity="fill"

               android:text="无符号右移" />


           <Button

               android:layout_width="wrap_content"

               android:layout_columnSpan="2"

               android:layout_gravity="fill"

               android:text="有符号右移" />



       </GridLayout>


       <TableLayout

           android:layout_width="match_parent"

           android:layout_height="212dp">


           <TableRow

               android:layout_width="match_parent"

               android:layout_height="487dp"

               android:layout_weight="1"

               android:padding="0dp">


               <Button

                   android:layout_height="match_parent"

                   android:layout_weight="1"

                   android:text="退格"></Button>


               <Button

                   android:layout_height="match_parent"

                   android:layout_weight="1"

                   android:text="清除"></Button>


               <Button

                   android:layout_height="match_parent"

                   android:layout_weight="1"

                   android:text="9"></Button>


               <Button

                   android:layout_height="match_parent"

                   android:layout_weight="1"

                   android:text="±"></Button>



           </TableRow>


           <TableRow

               android:layout_width="match_parent"

               android:layout_height="487dp"

               android:layout_weight="1"

               android:padding="0dp">


               <Button

                   android:layout_height="match_parent"

                   android:layout_weight="1"

                   android:text="6"></Button>


               <Button

                   android:layout_height="match_parent"

                   android:layout_weight="1"

                   android:text="7"></Button>


               <Button

                   android:layout_height="match_parent"

                   android:layout_weight="1"

                   android:text="8"></Button>


               <Button

                   android:layout_height="match_parent"

                   android:layout_weight="1"

                   android:text="+"></Button>



           </TableRow>


           <TableRow

               android:layout_width="match_parent"

               android:layout_height="487dp"

               android:layout_weight="1"

               android:padding="0dp">


               <Button

                   android:layout_height="match_parent"

                   android:layout_weight="1"

                   android:text="3"></Button>


               <Button

                   android:layout_height="match_parent"

                   android:layout_weight="1"

                   android:text="4"></Button>


               <Button

                   android:layout_height="match_parent"

                   android:layout_weight="1"

                   android:text="5"></Button>


               <Button

                   android:layout_height="match_parent"

                   android:layout_weight="1"

                   android:text="+"></Button>



           </TableRow>


           <TableRow

               android:layout_width="match_parent"

               android:layout_height="487dp"

               android:layout_weight="1"

               android:padding="0dp">


               <Button

                   android:layout_height="match_parent"

                   android:layout_weight="1"

                   android:text="0"></Button>


               <Button

                   android:layout_height="match_parent"

                   android:layout_weight="1"

                   android:text="1"></Button>


               <Button

                   android:layout_height="match_parent"

                   android:layout_weight="1"

                   android:text="2"></Button>


               <Button

                   android:layout_height="match_parent"

                   android:layout_weight="1"

                   android:text="/"></Button>



           </TableRow>


           <TableRow

               android:layout_width="match_parent"

               android:layout_height="487dp"

               android:layout_weight="1"

               android:padding="0dp">


               <Button

                   android:layout_height="match_parent"

                   android:layout_weight="1"

                   android:text="A"></Button>


               <Button

                   android:layout_height="match_parent"

                   android:layout_weight="1"

                   android:text="B"></Button>


               <Button

                   android:layout_height="match_parent"

                   android:layout_weight="1"

                   android:text="C"></Button>


               <Button

                   android:layout_height="match_parent"

                   android:layout_weight="1"

                   android:text="D"></Button>



           </TableRow>


           <TableRow

               android:layout_width="match_parent"

               android:layout_height="487dp"

               android:layout_weight="1"

               android:padding="0dp">


               <Button

                   android:layout_height="match_parent"

                   android:layout_weight="1"

                   android:text="E"></Button>


               <Button

                   android:layout_height="match_parent"

                   android:layout_weight="1"

                   android:text="F"></Button>


               <Button

                   android:layout_height="match_parent"

                   android:layout_weight="1"

                   android:text="G"></Button>


               <Button

                   android:layout_height="match_parent"

                   android:layout_weight="1"

                   android:text="="></Button>



           </TableRow>




       </TableLayout>


   </LinearLayout>


</LinearLayout>

```


#### 界面效果:


屏幕截图 2022-04-06 181747.png





### 主界面和其他界面的交互

点击对应的按钮,跳转相应的界面!

#### MainActivity


```java

package com.example.myapplication;


import androidx.appcompat.app.AppCompatActivity;


import android.content.Intent;

import android.os.Bundle;

import android.view.KeyEvent;

import android.view.View;

import android.widget.Button;


public class MainActivity extends AppCompatActivity {


   @Override

   protected void onCreate(Bundle savedInstanceState) {

       super.onCreate(savedInstanceState);

       setContentView(R.layout.activity_main);

       Button btn1=(Button) findViewById(R.id.button21);

       Button btn2=(Button) findViewById(R.id.button22);

       Button btn3=(Button) findViewById(R.id.button23);

       Button btn4=(Button) findViewById(R.id.button24);

       btn1.setOnClickListener(new View.OnClickListener(){

           @Override

           public  void onClick(View View){

               setContentView(R.layout.jiandanjishuanqi);

           }

       });

       btn2.setOnClickListener(new View.OnClickListener(){

           @Override

           public  void onClick(View View){

               setContentView(R.layout.kexuejishuanqi);

           }

       });

       btn3.setOnClickListener(new View.OnClickListener(){

           @Override

           public  void onClick(View View){

               setContentView(R.layout.chengxujishuanqi);

           }

       });

       btn4.setOnClickListener(new View.OnClickListener(){

               @Override

               public  void onClick(View View){

                   System.exit(0);

       }


       });

   }

   @Override

   public  boolean onKeyDown(int keyCode, KeyEvent event){

       if(keyCode==KeyEvent.KEYCODE_BACK){

           Intent intent=new Intent(this,MainActivity.class);

           intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);

           startActivity(intent);

       }

       return  true;

   }

}

```

### 总结:

安卓实验作业,刚接触能力有限就做了个大概,可以根据自己的需求添加主题,样式,颜色!




目录
相关文章
|
6天前
|
编解码 Java Android开发
通义灵码:在安卓开发中提升工作效率的真实应用案例
本文介绍了通义灵码在安卓开发中的应用。作为一名97年的聋人开发者,我在2024年Google Gemma竞赛中获得了冠军,拿下了很多项目竞赛奖励,通义灵码成为我的得力助手。文章详细展示了如何安装通义灵码插件,并通过多个实例说明其在适配国际语言、多种分辨率、业务逻辑开发和编程语言转换等方面的应用,显著提高了开发效率和准确性。
|
5天前
|
Android开发 开发者 UED
安卓开发中自定义View的实现与性能优化
【10月更文挑战第28天】在安卓开发领域,自定义View是提升应用界面独特性和用户体验的重要手段。本文将深入探讨如何高效地创建和管理自定义View,以及如何通过代码和性能调优来确保流畅的交互体验。我们将一起学习自定义View的生命周期、绘图基础和事件处理,进而探索内存和布局优化技巧,最终实现既美观又高效的安卓界面。
18 5
|
3天前
|
JSON Java Android开发
探索安卓开发之旅:打造你的第一个天气应用
【10月更文挑战第30天】在这个数字时代,掌握移动应用开发技能无疑是进入IT行业的敲门砖。本文将引导你开启安卓开发的奇妙之旅,通过构建一个简易的天气应用来实践你的编程技能。无论你是初学者还是有一定经验的开发者,这篇文章都将成为你宝贵的学习资源。我们将一步步地深入到安卓开发的世界中,从搭建开发环境到实现核心功能,每个环节都充满了发现和创造的乐趣。让我们开始吧,一起在代码的海洋中航行!
|
5天前
|
缓存 数据库 Android开发
安卓开发中的性能优化技巧
【10月更文挑战第29天】在移动应用的海洋中,性能是船只能否破浪前行的关键。本文将深入探讨安卓开发中的性能优化策略,从代码层面到系统层面,揭示如何让应用运行得更快、更流畅。我们将以实际案例和最佳实践为灯塔,引领开发者避开性能瓶颈的暗礁。
16 3
|
7天前
|
存储 IDE 开发工具
探索Android开发之旅:从新手到专家
【10月更文挑战第26天】在这篇文章中,我们将一起踏上一段激动人心的旅程,探索如何在Android平台上从零开始,最终成为一名熟练的开发者。通过简单易懂的语言和实际代码示例,本文将引导你了解Android开发的基础知识、关键概念以及如何实现一个基本的应用程序。无论你是编程新手还是希望扩展你的技术栈,这篇文章都将为你提供价值和启发。让我们开始吧!
|
13天前
|
Java API Android开发
安卓应用程序开发的新手指南:从零开始构建你的第一个应用
【10月更文挑战第20天】在这个数字技术不断进步的时代,掌握移动应用开发技能无疑打开了一扇通往创新世界的大门。对于初学者来说,了解并学习如何从无到有构建一个安卓应用是至关重要的第一步。本文将为你提供一份详尽的入门指南,帮助你理解安卓开发的基础知识,并通过实际示例引导你完成第一个简单的应用项目。无论你是编程新手还是希望扩展你的技能集,这份指南都将是你宝贵的资源。
42 5
|
12天前
|
设计模式 IDE Java
探索安卓开发:从新手到专家的旅程
【10月更文挑战第22天】 在数字时代的浪潮中,移动应用开发如同一座金矿,吸引着无数探险者。本文将作为你的指南针,指引你进入安卓开发的广阔天地。我们将一起揭开安卓平台的神秘面纱,从搭建开发环境到掌握核心概念,再到深入理解安卓架构。无论你是初涉编程的新手,还是渴望进阶的开发者,这段旅程都将为你带来宝贵的知识和经验的财富。让我们开始吧!
|
2天前
|
移动开发 Java Android开发
探索Android与iOS开发的差异性与互联性
【10月更文挑战第32天】在移动开发的大潮中,Android和iOS两大平台各领风骚。本文将深入浅出地探讨这两个平台的开发差异,并通过实际代码示例,展示如何在各自平台上实现相似的功能。我们将从开发环境、编程语言、用户界面设计、性能优化等多个角度进行对比分析,旨在为开发者提供跨平台开发的实用指南。
18 0
|
11天前
|
搜索推荐 Android开发 UED
安卓开发中的自定义视图:打造个性化用户界面
【10月更文挑战第22天】在安卓应用的海洋中,如何让你的应用脱颖而出?一个独特且直观的用户界面(UI)至关重要。本文将引导你通过自定义视图来打造个性化的用户体验,从基础的视图绘制到触摸事件的处理,我们将一步步深入探讨。准备好了吗?让我们开始吧!
|
12天前
|
Android开发
我是一位Android工程师,用通义灵码的AS插件做开发工作助手,对比之前没有灵码,现在提效了60%
我是一位Android工程师,用通义灵码的AS插件做开发工作助手,对比之前没有灵码,现在提效了60%
28 0