我有一个非常奇怪的故障,我无法理解。任何帮助将不胜感激,因为这适用于运行Android 2.3的平板电脑,运行3.1的平板电脑,但不适用于运行Android 2.1的手机。
我正在尝试使用ID“overview_linear_layout”在以下XML中定义LinearLayout。
overview_view.xml
<?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">
<include layout="@layout/listing_view" android:layout_width="fill_parent" android:id="@+id/header_view" android:layout_height="wrap_content"></include>
<ScrollView android:id="@+id/scrollView1" android:layout_weight="1" android:layout_width="fill_parent" android:layout_height="wrap_content">
<LinearLayout android:layout_width="fill_parent" android:orientation="vertical" android:layout_height="fill_parent" android:id="@+id/overview_linear_layout">
<TextView android:scrollbars="vertical" android:longClickable="false" android:layout_weight="1" android:clickable="false" android:layout_width="fill_parent" android:layout_height="wrap_content" android:id="@+id/main_description"></TextView>
</LinearLayout>
</ScrollView>
<include layout="@layout/listing_view" android:layout_width="fill_parent" android:id="@+id/footer_view" android:layout_height="wrap_content" android:layout_weight="0.0"></include>
</LinearLayout>
我用来获取视图的代码如下:
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.overview_view);
LinearLayout linearLayout = (LinearLayout)findViewById(R.id.overview_linear_layout);
if(linearLayout!=null) {
System.out.println("Found linear layout");
}
else {
System.out.println("Did not find linear layout");
}
}
我在Eclipse中尝试了Project-&gt; Clean,但这也无济于事。
答案 0 :(得分:0)
更改此
LinearLayout linearLayout = (LinearLayout)findViewById(R.id.overview_linear_layout);
到
LinearLayout linearLayout = (LinearLayout)findViewById(R.layout.overview_linear_layout);`
答案 1 :(得分:0)
如果当您键入单击红叉时eclipse没有显示overview_linear_layout,请单击R中的创建常量overview_linear_layout。