我对android很新,所以我可能会遗漏一些东西。 我已经用这样的几个按钮定义了简单的android布局。
[self.<your_Button>.layer setCornerRadius:self.<your_Button>.frame.size.height/2];
[self.<your_Button>.layer setCornerRadius:self.<your_Button>.frame.size.width/2]; //
[self.<your_Button>.layer setBorderColor:[[UIColor darkGrayColor] CGColor]];
[self.<your_Button>.layer setBorderWidth:1.0f];
但是在设计师中我可以看到我没有定义的多个textView。我甚至可以设置文字。
它们不在运行时,但我可以在设计时选择和编辑它们。它真的很烦人。有人可以解释一下吗?
答案 0 :(得分:0)
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TableRow>
<Button
android:text="Button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/button1"/>
<Button
android:text="Button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/button2"/>
<Button
android:text="Button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/button3"/>
<Button
android:text="Button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/button4"/>
<ImageButton
android:src="@android:drawable/ic_menu_search"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/button5"/>
</TableRow>
</TableLayout>
我希望这能解决你的问题。感谢...