所以我一直在试图找出布局和使用布局inflater,但我遇到了一些问题。我有两个相对的xml布局文件,一个xml文件有两个textViews,一个editText字段和一个微调器对象:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/firstLayout"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<TextView
android:id="@+id/goalNameView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:layout_marginLeft="5dip"
android:text="@string/goalName" />
<EditText
android:id="@+id/goal_name"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_toRightOf="@+id/goalNameView"
android:hint="@string/editText"
android:ems="10" >
<requestFocus />
</EditText>
<TextView
android:id="@+id/goalTasksView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignBaseline="@+id/goal_tasks"
android:layout_alignBottom="@+id/goal_tasks"
android:layout_alignLeft="@+id/goalNameView"
android:text="@string/goalTasks" />
<Spinner
android:id="@+id/goal_tasks"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_toRightOf="@+id/goalTasksView"
android:layout_marginTop="51dp" />
</RelativeLayout>
另一个xml文件有一个textView和一个editText字段:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/tView"
>
<EditText
android:id="@+id/taskNameField"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_toRightOf="@+id/taskNameView"
android:ems="10"
android:hint="@string/editText" />
<TextView
android:id="@+id/taskNameView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignBaseline="@+id/taskNameField"
android:layout_alignBottom="@+id/taskNameField"
android:layout_alignParentLeft="true"
android:text="@string/taskName"
/>
</RelativeLayout>
我正在尝试将这两个布局与第三个xml文件(main.xml)一起修补:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:orientation="vertical"
android:id="@+id/theMain"
>
<include android:id="@id/mainLayout" layout="@layout/activity_goal_keeper" />
</LinearLayout>
我希望布局工作的方式是显示第一个布局(@ id / firstLayout),然后是第二个布局(@ id / tView)。我已经读过我需要在LinearLayout上实现布局来实现这个,这就是为什么我有第三个布局(@ id / theMain)。
正如你所看到的,我有@ id / firstLayout的include语句,但我没有@ id / tView的include语句,因为我试图通过我的主要活动来扩展多个版本的@ id / tView :
public class GoalKeeperActivity extends Activity implements AdapterView.OnItemSelectedListener {
public Integer[] items= {1,2,3,4,5,6,7,8};
@Override
public void onCreate(Bundle icicle) {
super.onCreate(icicle);
//setContentView(R.layout.activity_goal_keeper);
setContentView(R.layout.main);
Spinner numOfTasks=(Spinner) findViewById(R.id.goal_tasks);
numOfTasks.setOnItemSelectedListener(this);
ArrayAdapter<Integer> aa = new ArrayAdapter<Integer>(this, android.R.layout.simple_spinner_item, items);
aa.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);
numOfTasks.setAdapter(aa);
ViewGroup item = (ViewGroup) findViewById(R.id.theMain);
for(int i=0; i<3;i++)
{
View child = getLayoutInflater().inflate(R.layout.tasks_view, item, false);
child.setId(i);
item.addView(child);
}
我的问题是@firstLayout显示正常,但@tView根本没有显示。有人可以解释一下我缺少的东西吗?
提前致谢。
答案 0 :(得分:0)
我想通了,这只是在@ id / tView xml文件中设置“android:layout_height”属性等于wrap_content的问题。愚蠢的小错误......