Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> 關於Android編程 >> android的toogleButton和switch的用法

android的toogleButton和switch的用法

編輯:關於Android編程

這兩個是按鈕開關,監聽CheckedChangeListener

toggle_layout.xml:

 

 

MainActivity.java:

 

package com.example.androidmy;

import android.os.Bundle;
import android.provider.SyncStateContract.Columns;
import android.app.Activity;
import android.view.Gravity;
import android.view.Menu;
import android.widget.Button;
import android.widget.CompoundButton.OnCheckedChangeListener;
import android.widget.CompoundButton;
import android.widget.GridLayout;
import android.widget.LinearLayout;
import android.widget.Switch;
import android.widget.ToggleButton;

public class MainActivity extends Activity {
	private ToggleButton toggleButton;
	private Switch switch1;
	@Override
	protected void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
			setContentView(R.layout.toggle_layout);
			toggleButton = (ToggleButton)findViewById(R.id.toggle);
			switch1 = (Switch)findViewById(R.id.switcher);
			final LinearLayout linearLayout = (LinearLayout)findViewById(R.id.lineaLayout);
			OnCheckedChangeListener listener = new OnCheckedChangeListener() {
				
				@Override
				public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
					if(isChecked){
						//設置LinearLayout垂直布局
						linearLayout.setOrientation(1);
					}else{
						//設置LinearLayout水平布局
						linearLayout.setOrientation(0);
					}
					
				}
			};
			toggleButton.setOnCheckedChangeListener(listener);
			switch1.setOnCheckedChangeListener(listener);
		}
	
	
	
	
	
	}

	

效果:

 

\

\

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved