當前位置:首頁 » 安卓系統 » android案例源碼

android案例源碼

發布時間: 2024-12-09 00:58:01

⑴ 求一簡單ANDROID源碼

main.xml
<?xml version="1.0" encoding="utf-8"?>讓猛
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<EditText android:id="@+id/edit" android:layout_width="200dp" android:layout_height="wrap_content"></EditText>
<Button android:id="@+id/bt" android:text="click" android:layout_width="wrap_content" android:layout_height="wrap_content">猜滑皮<穗差/Button>
<TextView android:id="@+id/tv" android:layout_width="wrap_content" android:layout_height="wrap_content"></TextView>
</LinearLayout>

test.java:
package com.android.test;

import java.text.DecimalFormat;

import android.app.Activity;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.EditText;
import android.widget.TextView;

public class test extends Activity {
/** Called when the activity is first created. */
TextView tv;
Button bt;
EditText edit;

@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
tv = (TextView) findViewById(R.id.tv);
bt = (Button) findViewById(R.id.bt);
edit = (EditText) findViewById(R.id.edit);

bt.setOnClickListener(new OnClickListener(){

public void onClick(View v) {
// TODO Auto-generated method stub
String strEdit = edit.getText().toString();
float input = Float.parseFloat(strEdit);
Float output = input / 3;
DecimalFormat df = new DecimalFormat("0.##");

tv.setText(df.format(output));
}});

}
}

你試試哈

熱點內容
java開發人員 發布:2024-12-30 02:26:17 瀏覽:537
存儲技術參數 發布:2024-12-30 02:20:39 瀏覽:116
安卓系統車機如何不卡 發布:2024-12-30 02:16:29 瀏覽:896
原始版安卓怎麼下載 發布:2024-12-30 02:11:26 瀏覽:66
linux網卡命令行 發布:2024-12-30 02:11:18 瀏覽:182
編程語言網名 發布:2024-12-30 02:09:46 瀏覽:337
蠏子的存儲 發布:2024-12-30 02:06:26 瀏覽:240
什麼配置讓人感覺高深莫測 發布:2024-12-30 02:06:26 瀏覽:848
密碼口是什麼樣的 發布:2024-12-30 02:05:08 瀏覽:566
豐田xrv哪個配置舒適 發布:2024-12-30 02:05:07 瀏覽:105