成人午夜视频全免费观看高清-秋霞福利视频一区二区三区-国产精品久久久久电影小说-亚洲不卡区三一区三区一区

Android學(xué)習(xí)筆記-常用控件

單選按鈕 Radio

讓客戶滿意是我們工作的目標(biāo),不斷超越客戶的期望值來(lái)自于我們對(duì)這個(gè)行業(yè)的熱愛(ài)。我們立志把好的技術(shù)通過(guò)有效、簡(jiǎn)單的方式提供給客戶,將通過(guò)不懈努力成為客戶在信息化領(lǐng)域值得信任、有價(jià)值的長(zhǎng)期合作伙伴,公司提供的服務(wù)項(xiàng)目有:域名注冊(cè)、網(wǎng)絡(luò)空間、營(yíng)銷軟件、網(wǎng)站建設(shè)、太平網(wǎng)站維護(hù)、網(wǎng)站推廣。

Android學(xué)習(xí)筆記-常用控件

        <RadioGroup 
            android:id="@+id/genderGroup"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:orientation="vertical">
            <RadioButton 
                android:id="@+id/femaleButton"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="@string/female"/>
            
            <RadioButton 
                android:id="@+id/maleButton"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="@string/male"/>
        </RadioGroup>
		genderGroup = (RadioGroup) findViewById(R.id.genderGroup);
		maleButton = (RadioButton) findViewById(R.id.maleButton);
		femaleButton = (RadioButton) findViewById(R.id.femaleButton);
		//...
		genderGroup.setOnCheckedChangeListener(new RadioGroup.OnCheckedChangeListener() {

					@Override
					public void onCheckedChanged(RadioGroup group, int checkedId) {
						// TODO Auto-generated method stub
						if (femaleButton.getId() == checkedId) {
							System.out.println("female");
							Toast.makeText(MainActivity.this, "female",
									Toast.LENGTH_SHORT).show();
						} else if (maleButton.getId() == checkedId) {
							System.out.println("female");
							Toast.makeText(MainActivity.this, "male",
									Toast.LENGTH_SHORT).show();
						}
					}
				});


多選 CheckBox

Android學(xué)習(xí)筆記-常用控件

        <CheckBox 
            android:id="@+id/swim"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_below="@id/genderGroup"
            android:text="@string/swim"/>
        
        <CheckBox 
            android:id="@+id/read"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_below="@id/swim"
            android:text="@string/read"/>
        
        <CheckBox 
            android:id="@+id/run"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_below="@id/read"
            android:text="@string/run"/>
		swimBox = (CheckBox) findViewById(R.id.swim);
		runBox = (CheckBox) findViewById(R.id.run);
		readBox = (CheckBox) findViewById(R.id.read);
		//...
				swimBox.setOnCheckedChangeListener(new OnCheckedChangeListener() {

			@Override
			public void onCheckedChanged(CompoundButton buttonView,
					boolean isChecked) {
				// TODO Auto-generated method stub
				if (isChecked) {
					System.out.println("Swim is checked");
				} else {
					System.out.println("Swim is unchecked");
				}
			}
		});

		readBox.setOnCheckedChangeListener(new OnCheckedChangeListener() {

			@Override
			public void onCheckedChanged(CompoundButton buttonView,
					boolean isChecked) {
				// TODO Auto-generated method stub
				if (isChecked) {
					System.out.println("Read is checked");
				} else {
					System.out.println("Read is unchecked");
				}
			}
		});

		runBox.setOnCheckedChangeListener(new OnCheckedChangeListener() {

			@Override
			public void onCheckedChanged(CompoundButton buttonView,
					boolean isChecked) {
				// TODO Auto-generated method stub
				if (isChecked) {
					System.out.println("Run is checked");
				} else {
					System.out.println("Run is unchecked");
				}
			}
		});
	}


進(jìn)度條 ProgressBar

Android學(xué)習(xí)筆記-常用控件

<ProgressBar 
    android:id="@+id/firstBar"
    
    android:layout_width="200dp"
    android:layout_height="wrap_content"
    android:visibility="gone"/>

<ProgressBar 
    android:id="@+id/secondBar"
    
    android:layout_width="200dp"
    android:layout_height="wrap_content"
    android:layout_below="@id/firstBar"
    android:visibility="gone"/>

<Button android:id="@+id/myButton"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_below="@id/secondBar"
    android:text="開(kāi)始"/>
public class MainActivity extends ActionBarActivity {

	private ProgressBar firstBar = null;
	private ProgressBar secondBar = null;
	private Button myButon = null;
	private int i = 0;
	@Override
	protected void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		setContentView(R.layout.activity_main);
		firstBar = (ProgressBar) findViewById(R.id.firstBar);
		secondBar = (ProgressBar) findViewById(R.id.secondBar);
		myButon = (Button) findViewById(R.id.myButton);
		
		myButon.setOnClickListener(new ButtonListener());
	}
	
	class ButtonListener implements OnClickListener{
		
		@Override
		public void onClick(View v) {
			if (i == 0) {
				firstBar.setVisibility(View.VISIBLE);
				secondBar.setVisibility(View.VISIBLE);
			}else if (i < firstBar.getMax()) {
				//設(shè)置朱進(jìn)度條的值
				firstBar.setProgress(i);
				//設(shè)置第二進(jìn)度條的值
				secondBar.setSecondaryProgress(i + 10);
				//默認(rèn)的進(jìn)度條無(wú)法顯示進(jìn)行的狀態(tài)
				//secondBar.setProgress(i);
			}else {
				firstBar.setVisibility(View.GONE);
				secondBar.setVisibility(View.GONE);
			}
			i = i + 10;
		}
	}

}


列表 ListView

Android學(xué)習(xí)筆記-常用控件

main.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >
    
    <LinearLayout 
        android:id="@+id/ListLinearLayout"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical">
        
        <ListView android:id="@+id/android:list"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:drawSelectorOnTop="false"
            android:scrollbars="vertical"/>
    </LinearLayout>
</LinearLayout>

user.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="horizontal" >
    <TextView 
        android:id="@+id/user_name"
        android:layout_width="180dip"
        android:layout_height="30dip"
        android:textSize="10pt"
        android:singleLine="true"/>
   <TextView 
        android:id="@+id/user_ip"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:textSize="10pt"
        android:gravity="right"/> 

</LinearLayout>

MainActivity.java

public class MainActivity extends ListActivity{

	@Override
	protected void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		setContentView(R.layout.main);
		ArrayList<HashMap<String, String>> list = new ArrayList<HashMap<String,String>>();
		HashMap<String, String> map1 = new HashMap<String, String>();
		HashMap<String, String> map2 = new HashMap<String, String>();
		HashMap<String, String> map3 = new HashMap<String, String>();
		
		map1.put("user_name", "admin1");
		map1.put("user_ip", "192.168.24.214");
		
		map2.put("user_name", "admin2");
		map2.put("user_ip", "192.168.24.215");
		
		map3.put("user_name", "admin3");
		map3.put("user_ip", "192.168.24.216");
		
		list.add(map1);
		list.add(map2);
		list.add(map3);
		
		SimpleAdapter listAdapter = new SimpleAdapter(this, list, R.layout.user, new String[]{"user_name", "user_ip"}, new int[]{R.id.user_ip, R.id.user_name});
		setListAdapter(listAdapter);
	}

	@Override
	protected void onListItemClick(ListView l, View v, int position, long id) {
		// TODO Auto-generated method stub
		super.onListItemClick(l, v, position, id);
		System.out.println("id:" + id);
		System.out.println("position:" + position);
	}
	
}

本文標(biāo)題:Android學(xué)習(xí)筆記-常用控件
文章URL:http://jinyejixie.com/article6/ppsiig.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供定制開(kāi)發(fā)網(wǎng)站維護(hù)、手機(jī)網(wǎng)站建設(shè)、網(wǎng)站改版App設(shè)計(jì)、網(wǎng)站制作

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)

網(wǎng)站優(yōu)化排名
新和县| 册亨县| 铜山县| 酒泉市| 长沙县| 京山县| 手游| 博白县| 扎赉特旗| 铅山县| 宿松县| 全南县| 铅山县| 于田县| 聂拉木县| 乡城县| 福安市| 安泽县| 安泽县| 长武县| 化州市| 镇赉县| 连平县| 广平县| 芦山县| 固安县| 金昌市| 康保县| 长岭县| 南召县| 泸州市| 舟曲县| 虎林市| 含山县| 桐柏县| 乌鲁木齐市| 临洮县| 天祝| 乐亭县| 顺义区| 吉木乃县|