在Xamarin中创建自定义控件
问题描述:
我要将我的应用程序从Windows Phone 8移植到Android-我需要创建一些自定义UI控件。我试图创建一个XML布局,在其中创建一个LinearLayout作为控件,然后动态添加(在用户需要之后)-但这没有用。我怎么能做到最简单的方法呢?
I'm porting my app from Windows Phone 8 to Android - and I need to create a few custom UI controls. I tried to create an XML layout, creating a LinearLayout inside it as the control and then add it dynamically (After user's desire) - but that didn't work. How can I accomplish this the easiest way as possible?
这是我尝试过的代码:
MainActivity。 cs:
MainActivity.cs:
using System;
using Android.App;
using Android.Content;
using Android.Runtime;
using Android.Views;
using Android.Widget;
using Android.OS;
namespace Knowledge_Organizer
{
[Activity (Label = "Knowledge_Organizer", MainLauncher = true)]
public class MainActivity : Activity
{
protected override void OnCreate (Bundle bundle)
{
base.OnCreate (bundle);
// Set our view from the "main" layout resource
SetContentView (Resource.Layout.Main);
// Import the items from resources
LinearLayout layout = FindViewById<LinearLayout> (Resource.Id.rootLayout);
// Add the tile
Resource.Layout.Tile tileRoot = FindViewById<LinearLayout> (Resource.Layout.Tile);
var tile = (Resource.Id.projectTile);
layout.AddView (tile);
}
}
}
主要布局:
<?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"
android:minWidth="25px"
android:minHeight="25px"
android:id="@+id/rootLayout" />
平铺:
<?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">
<LinearLayout
android:orientation="horizontal"
android:minWidth="25px"
android:minHeight="25px"
android:layout_width="290dp"
android:layout_height="120dp"
android:id="@+id/linearLayout1"
android:background="#ff2e4653">
<TextView
android:text="Project"
android:textAppearance="?android:attr/textAppearanceMedium"
android:id="@+id/projectTile"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginRight="0.0dp" />
</LinearLayout>
</LinearLayout>
非常感谢!
亲切的问候,
Erik
Kind Regards, Erik
答
您需要使用LayoutInflater,例如
You need to use a LayoutInflater, e.g.
var tile = LayoutInflater.Inflate(Resource.Layout.my_tile_xml, null);
layout.AddView (tile);
要在图块中查找控件:
var tile = LayoutInflater.Inflate(Resource.Layout.my_tile_xml, null);
tile.FindViewById<TextView>(Resource.Id.projectTile).Text = "whatever";
layout.AddView (tile);