原文 Visual Studio跨平台开发实战(4) - Xamarin Android基本控制项介绍
public class ReadAsset : Activity
{
protected override void OnCreate (Bundle bundle) {
base.OnCreate (bundle);
InputStream input = Assets.Open ("my_asset.txt");}}
- LinearLayout: 主要的页面框架,以垂直或水平的方式排列页面上的对象,相当于Silverlight 中的stack pane
- @+id/[对象名称]: 告诉Android parser,为对象建立一个resource id
- @string/[名称]: 在String.xml中建立一个字符串资源,后续可供Resource类别存取
- 名称Hello对应到UI中Button的Text属性
- 名称ApplicationName对应到项目属性中的应用程序名称
- 名称Hello2为自行定义的字符串资源
SetContentView(Resource.Layout.TextView);
2. 从工具箱中拖拉1个Text(Small)及1个Plain Text对象到画面上并编辑Text的文字如下:
SetContentView(Resource.Layout.EditText);
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TextView
android:textAppearance="?android:attr/textAppearanceMedium"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:id="@+id/textView1"/>
<ToggleButton
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:id="@+id/toggleButton1"
android:textOn="开"
android:textOff="关"
android:layout_marginBottom="6.7dp" />
<Switch
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textOn="开"
android:textOff="关"
android:id="@+id/Switch1"
android:layout_marginRight="225.3dp" />
</LinearLayout>
//载入页面
SetContentView(Resource.Layout.SwitchToggle);
//宣告并取得控件实体
ToggleButton toggle = FindViewById<ToggleButton>(Resource.Id.toggleButton1);
Switch _switch = FindViewById<Switch>(Resource.Id.Switch1);
TextView msg = FindViewById<TextView>(Resource.Id.textView1);
//处理Toggle Button的Click事件, 并将状态显示在TextView
toggle.Click+= (sender, e) => {
if (toggle.Checked) {
msg.Text = "目前Toggle Button的状态是\"开\"";}
else{
msg.Text = "目前Toggle Button的状态是\"关\"";};};
//处理Switch的Click事件, 并将状态显示在TextView
_switch.Click += (sender, e) => {
if (_switch.Checked) {
msg.Text = "目前Switch Button的状态是\"开\"";}
else{
msg.Text = "目前Switch Button的状态是\"关\"";};};
3. 执行项目并检视执行结果.
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TextView
android:textAppearance="?android:attr/textAppearanceMedium"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:id="@+id/textView1"/>
<Seekbar
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:id="@+id/Seekbar1"
android:layout_marginRight="48.0dp" />
</LinearLayout>
//载入页面
SetContentView(Resource.Layout.SeekBar);
//宣告并取得页面上的控件
var msg = FindViewById<TextView>(Resource.Id.textView1);
var seekbar = FindViewById<SeekBar>(Resource.Id.seekBar1);
//将seekBar的最大值设定为100
seekbar.Max = 100;
//处理SeekBar的ProgressChanged事件,并将目前的大小(进度)透过TextView呈现
seekbar.ProgressChanged += (sender,e) => {
msg.Text = string.Format("目前Seekbar的大小为{0}",seekbar.Progress.ToString());
};
3. 执行项目并检视执行结果.