本文介绍了请帮我我自定义布局在android系统的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
了java.lang.RuntimeException:无法启动的活动`ComponentInfo {com.example.demo / com.example.demo.Demo}:android.view.InflateException:二进制XML文件中的行#7:错误充气类com.example.component.MainActivity`
activity_main.xml
<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"
tools:context=".MainActivity" >
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:text="@string/hello_world" />
</RelativeLayout>
Demo.java
public class Demo extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_demo);
}
}
activity_demo.xml
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<com.example.component.MainActivity
android:id="@+id/comp"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
/>
</FrameLayout>
解决方案
Since Demo is your Activity, define it in Android manifest.xml file using the package name:com.example.demo.Demo.And why are you adding framelayout inside frameLayout use only one , your custom framelayout.and define the xml as:
<com.example.component.MainActivity
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/comp"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
/>
//hope it works
这篇关于请帮我我自定义布局在android系统的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!