我从另一个项目中复制了一些 java 和 XML 文件(因为我的朋友做了布局,但我做核心编码,我们在不同的项目中做)
不知何故,当我为我的代码实现布局时,它给出了错误(无法实例化类),我修复了所有包路径,刷新它,清理它,确保构造函数是公共的(显然),但 XML 仍然给出我的错误。
该项目在我重新启动eclipse后运行良好,它运行没有任何失败并且在logcat中没有错误,但是当我检查我的eclipse文件中的friend_schedule.xml文件时它一直给我错误,但它仍然让我好奇它是否稍后会给出任何效果,有什么想法吗?
这是无法实例化的java文件:
package cal.endar;
public class FriendSchedule extends LinearLayout
{
public FriendSchedule(Context con)
{
super(con);
initComponent(con);
}
public FriendSchedule(Context con, AttributeSet att)
{
super(con, att);
initComponent(con);
}
public void initComponent(Context con)
{
LayoutInflater inf=LayoutInflater.from(con);
View v=inf.inflate(R.layout.main, null,false);
//View v=inf.inflate(R.layout.daily_layout, null,false);
//View v=inf.inflate(R.layout.weekly_layout, null,false);
addView(v);
v.getLayoutParams().height=LayoutParams.MATCH_PARENT;
LinearLayout.LayoutParams lp=(LinearLayout.LayoutParams) v.getLayoutParams();
lp.weight=1;
}
public void onClick(View v)
{
v.setBackgroundResource(R.drawable.app_list_selected);
}
}
这是我的friend_schedule.xml:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/LinearLayout1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="5dp">
<ImageView
android:id="@+id/imageView1"
android:layout_width="45dp"
android:layout_height="45dp"
android:src="@drawable/ic_launcher" />
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_marginLeft="5dp"
android:layout_weight="0.13"
android:gravity="left|center"
android:text="My Name"
android:textAppearance="?android:attr/textAppearanceLarge" />
</LinearLayout>
<cal.endar.FriendSchedule
android:layout_width="match_parent"
android:layout_height="match_parent" android:layout_weight="1"/>
</LinearLayout>