91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

怎么在Android中顯示一個計算器界面

發布時間:2021-01-27 14:28:46 來源:億速云 閱讀:176 作者:Leah 欄目:開發技術

這篇文章將為大家詳細講解有關怎么在Android中顯示一個計算器界面,文章內容質量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關知識有一定的了解。

XML文件:

<?xml version="1.0" encoding="utf-8"?>
<GridLayout xmlns:android="http://schemas.android.com/apk/res/android"
 android:orientation="vertical"
 android:layout_width="match_parent"
 android:layout_height="match_parent"
 android:rowCount="6"
 android:columnCount="4"
 android:id="@+id/root">
 
 <TextView
 android:layout_width="match_parent"
 android:layout_height="wrap_content"
 android:layout_columnSpan="4"
 android:textSize="50sp"
 android:layout_marginLeft="2pt"
 android:layout_marginRight="2pt"
 android:padding="3pt"
 android:layout_gravity="right"
 android:background="#eee"
 android:textColor="#000"
 android:text="0" />
 
 <Button
 android:layout_width="match_parent"
 android:layout_height="wrap_content"
 android:layout_columnSpan="4"
 android:text="清除"/>
 
</GridLayout>

MainActivity:

package learn.li.com.learnthree;
 
import android.os.Handler;
import android.os.Message;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.Gravity;
import android.widget.Button;
import android.widget.GridLayout;
import android.widget.TextView;
 
import java.util.Timer;
import java.util.TimerTask;
 
public class MainActivity extends AppCompatActivity {
 GridLayout gridLayout;
 String[] chars = new String[]{
  "7","8","9","÷",
  "4","5","6","x",
  "1","2","3","-",
  ".","0","=","="
 };
 @Override
 protected void onCreate(Bundle savedInstanceState) {
 super.onCreate(savedInstanceState);
 setContentView(R.layout.activity_main);
 gridLayout = (GridLayout)findViewById(R.id.root);
 for(int i = 0;i < chars.length;i++){
  Button bn = new Button(this);
  bn.setText(chars[i]);
  bn.setTextSize(40);
  bn.setPadding(5,35,5,35);
  GridLayout.Spec rowSpec = GridLayout.spec(i/4 + 2);
  GridLayout.Spec columnSpec = GridLayout.spec(i%4);
  GridLayout.LayoutParams params = new GridLayout.LayoutParams(rowSpec,columnSpec);
  params.setGravity(Gravity.FILL);
  gridLayout.addView(bn,params);
 
 }
 }
}

關于怎么在Android中顯示一個計算器界面就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

格尔木市| 沭阳县| 宣恩县| 尉犁县| 司法| 伽师县| 龙川县| 伊金霍洛旗| 隆德县| 通江县| 龙门县| 静乐县| 托克逊县| 襄汾县| 沭阳县| 新疆| 客服| 鹤山市| 杭州市| 介休市| 巨野县| 红桥区| 上林县| 阿城市| 铁岭县| 柳河县| 嘉鱼县| 桓台县| 兴仁县| 佛冈县| 宿州市| 仪征市| 肃宁县| 伊通| 旺苍县| 玛纳斯县| 平昌县| 太原市| 谢通门县| 嘉鱼县| 中宁县|