4

我试图在我的 Android 应用程序中对齐控件。

我需要这样做,但使用 CODE / C# / Xamarin 这个:android:orientation="horizo​​ntaly"

以下代码在 Xamarin 中不起作用(我猜在 java 中很好??): .setOrientation(LinearLayout.HORIZONTAL);

接受的方法是:.Orientation 我的代码缺少/错误代码:请参阅下面的*

LinearLayout LLMain = new LinearLayout(this);
LLMain.Id = _intID;       
LLMain.AddView(textView(_intID));
LLMain.AddView(editText(_intID));
LLMain.Orientation = LinearLayout.HORIZONTAL; ***
linearlayoutList.Add(LLMain);
return LLMain;

如何设置此值:??? 线性布局。水平;???

谢谢马丁

4

1 回答 1

8

尝试这个:

LLMain.Orientation = Orientation.Horizontal;
于 2013-10-15T10:39:14.750 回答