我正在尝试创建一个与 TeeChart 集成的 MonoDroid 应用程序,我想要一个活动来保存图表和其他一些组件,如 textview、按钮等。这是代码,
protected override void OnCreate(Bundle bundle)
{
base.OnCreate(bundle);
SetContentView(Resource.Layout.Test);
var testpanel = FindViewById<LinearLayout>(Resource.Id.MealChartPanel);
Steema.TeeChart.TChart tChart1 = new Steema.TeeChart.TChart(this);
Steema.TeeChart.Styles.Bar bar1 = new Steema.TeeChart.Styles.Bar();
tChart1.Series.Add(bar1);
bar1.Add(3, "Pears", Color.Red);
bar1.Add(4, "Apples", Color.Blue);
bar1.Add(2, "Oranges", Color.Green);
Steema.TeeChart.Themes.BlackIsBackTheme theme = new Steema.TeeChart.Themes.BlackIsBackTheme(tChart1.Chart);
theme.Apply();
testpanel.AddView(tChart1);
}
<?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:id="@+id/MealChartPanel"
android:layout_width="fill_parent"
android:layout_height="100dip"
android:layout_marginLeft="5dip"
android:layout_marginRight="5dip">
</LinearLayout>
</LinearLayout>
我使用了 testpanel.AddView(tChart1); 但是那里什么也没有,我怎样才能把图表放在 MealChartPanel 线性布局中?
谢谢,