我定义了一个自定义ViewGroup,它扩展了LinearLayout的功能:
public class TestLayout extends LinearLayout {
public TestLayout(Context context, AttributeSet attrs) {
super(context, attrs);
LayoutInflater inflater = (LayoutInflater)context.getSystemService
(Context.LAYOUT_INFLATER_SERVICE);
inflater.inflate(R.layout.testlayout, this, true);
}
}
它膨胀的布局( testlayout.xml )如下所示:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" android:gravity="center">
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button"/>
</LinearLayout>
最后,我在 main.xml中 使用了这个自定义组件:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<my.test.namespace.TestLayout
android:id="@+id/testLayout1"
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
</my.test.namespace.TestLayout>
</LinearLayout>
在布局编辑器中查看我的main.xml时,eclipse引发错误: my.test.namespace.TestLayout无法实例化。
和堆栈跟踪:
android.content.res.Resources$NotFoundException: Could not resolve resource value: 0x7F030001.
at com.android.layoutlib.bridge.android.BridgeResources.throwException(BridgeResources.java:648)
at com.android.layoutlib.bridge.android.BridgeResources.getLayout(BridgeResources.java:270)
at android.view.LayoutInflater.inflate(LayoutInflater.java:318)
at my.test.namespace.TestLayout.<init>(TestLayout.java:18)
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknown Source)
at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Unknown Source)
at java.lang.reflect.Constructor.newInstance(Unknown Source)
at com.android.ide.eclipse.adt.internal.editors.layout.ProjectCallback.instantiateClass(ProjectCallback.java:397)
at com.android.ide.eclipse.adt.internal.editors.layout.ProjectCallback.loadView(ProjectCallback.java:165)
at com.android.layoutlib.bridge.android.BridgeInflater.loadCustomView(BridgeInflater.java:205)
at com.android.layoutlib.bridge.android.BridgeInflater.createViewFromTag(BridgeInflater.java:133)
at android.view.LayoutInflater.rInflate(LayoutInflater.java:618)
at android.view.LayoutInflater.inflate(LayoutInflater.java:407)
0x7F030001
指向R.java中的布局xml文件。我尝试清理我的项目,但没有做任何事情。我使用LayoutInflater是否错误,还是这里发生了什么?
以下通常可以帮助您:
本文向大家介绍Android LinearLayout 线性布局,包括了Android LinearLayout 线性布局的使用技巧和注意事项,需要的朋友参考一下 示例 LinearLayout是一种ViewGroup将其子级排列在单列或单行中的。可以通过调用方法setOrientation()或使用xml属性来设置方向android:orientation。 垂直方向:android:orien
帮助我使用XML布局。 我在活动上有三个LinearLayout,所有LinearLayout的位置都是垂直的(从上到下) null
在上一节中,我们讲到了所有的 Layout 都是从 ViewGroup 继承而来,它可以包含若干 View 并按照指定的规则将这个 View 摆放到屏幕上。那么接下来的章节我们就来学习一下 Android 的 UI 布局,Android 原生有六大布局,分别是: LinearLayout(线性布局)、RelativeLayout(相对布局)、TableLayout(表格布局)、FrameLayou
我安装了Android Studio,但是当我编辑我的布局文件时,我找不到现场预览!我只看到一个XML文件。如何在图形视图中查看布局? 更新:这是我的情况下的样子:
本文向大家介绍Android布局控件之常用linearlayout布局,包括了Android布局控件之常用linearlayout布局的使用技巧和注意事项,需要的朋友参考一下 LinearLayout是线性布局控件,它包含的子控件将以横向或竖向的方式排列,按照相对位置来排列所有的widgets或者其他的containers,超过边界时,某些控件将缺失或消失。因此一个垂直列表的每一行只会有一个wid
我有最新的SDK构建工具(21.0.2)以及完整的API21下载和安装。我的targetSDKVersion在gradle文件中设置为21。如果我把预览改为用API20渲染,一切似乎都很好。下面提供了异常详细信息。 谢了! 异常详细信息java.lang.ClassNotFoundException:Android.support.v4.content.contextCompatapi21 · 在