菜鸟的安卓实习之路----在一个Dialog上面分情况显示内容layout---setVisibility

用一个Dialog在不同情况下显示不同内容,最关键的一个东西就是setVisibility(View.VISIBLE);.setVisibility(View.GONE);


在你的onCreate() 函数里面,首先要在一个dialog上面加载资源xml 

		mView = getLayoutInflater().inflate(R.layout.ethernet_dialog, null);
		setView(mView);
然后接受布局文件里面的所有空间 mView.findViewById(R.id.dhcp_choice);   一定要加上mView 

super.onCreate(saveInstance); 放在中间

然后假如你的布局文件里面有两种Linearlayout ,并且有不同的id名称 如(R.id.eth_conf_editor和R.id.eth_message_dialog)

然后分情况了:

if(.....){
			<strong>mView.findViewById(R.id.eth_conf_editor).setVisibility(View.VISIBLE);</strong>
			getButton(DialogInterface.BUTTON_NEUTRAL).setVisibility(View.GONE);
			getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_ADJUST_RESIZE |
					WindowManager.LayoutParams.SOFT_INPUT_STATE_VISIBLE);
		}else{
			<strong>mView.findViewById(R.id.eth_message_dialog).setVisibility(View.VISIBLE);</strong>
			getButton(DialogInterface.BUTTON_NEUTRAL).setEnabled(true);
		}  
就是这样了。用一下试试,碉堡了。


你可能感兴趣的:(android,安卓)