使用预定义属性创建View对象的最佳做法是什么?
我想使用像
这样的东西View view = (View) inflater.inflate(R.layout.orangeview, container,
false);
但似乎要求橙色视图位于视图组内部,并且我更喜欢在布局文件中有更独立的东西 - 唯一的视图属性,如
<?xml version="1.0" encoding="utf-8"?>
<RadioButton
android:layout_width="fill_parent"
android:id="@+id/orangeradiobutton"
android:layout_weight="1"
android:button="@null"
android:gravity="center"
android:textAppearance="?android:attr/textAppearanceSmall"
android:textColor="@color/radiobutton_colors" />
这可能还是应该使用其他方法?
答案 0 :(得分:0)
容器参数用于“调整”膨胀的布局。如果你不想这样,你可以打电话
View view = inflater.inflate(R.layout.orangeView, null);