自定义线性布局未显示

时间:2015-12-02 21:24:31

标签: java android android-linearlayout

我正在制作自定义布局,但它没有显示,我不知道为什么。

这是定义类的XML文件

<com.example.name.gw2applicaton.SpecializationView
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content">

        <LinearLayout
            android:layout_width="65dp"
            android:layout_height="match_parent">

            <Button
                android:layout_width="50dp"
                android:layout_height="50dp"
                android:text="yop2" />

            <Button
                android:layout_width="50dp"
                android:layout_height="50dp"
                android:text="yop2" />

    </LinearLayout>
</com.example.name.gw2applicaton.SpecializationView>

这是类,只是一个构造函数

 public class SpecializationView extends LinearLayout {

    public SpecializationView(Context context) {
        super(context);
        LayoutInflater inflater = (LayoutInflater) context
                .getSystemService(Context.LAYOUT_INFLATER_SERVICE);
        inflater.inflate(R.layout.layout_specialization, this, true);
    }
}

最后使用班级

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">

    <LinearLayout
     android:layout_width="match_parent"
     android:layout_height="match_parent"
     android:orientation="horizontal">

     <com.example.name.gw2applicaton.SpecializationView
        android:id="@+id/view"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_gravity="center_vertical">
      </com.example.name.gw2applicaton.SpecializationView>

        </LinearLayout>
</LinearLayout>

SpecializationView不可见,我不知道为什么。 我在这里做错了什么?

1 个答案:

答案 0 :(得分:0)

这不是自定义视图的工作方式,正如您尝试的那样。请改用此惯例:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="horizontal">

        <!-- just include the layout you defined else where -->
        <include layout="@layout/layout_specialization"/>

    </LinearLayout>

layout_specialization.xml是:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="65dp"
    android:layout_height="match_parent">

        <Button
            android:layout_width="50dp"
            android:layout_height="50dp"
            android:text="yop2" />

        <Button
            android:layout_width="50dp"
            android:layout_height="50dp"
            android:text="yop2" />

</LinearLayout>

注意:当您需要修改现有视图或视图组以具有特殊的编程功能时,您应该使用自定义视图定义,例如定位,动态内容,小众小部件等...当您想要使用像你一样只使用现有小部件功能的视图,就像我描述的那样。 include xml标记非常适合定义xml布局并通过项目重用它,因此可以最大限度地减少代码重复。

编辑:

顺便显示布局的原因是您只为以编程方式创建视图(通过java代码,而不是xml)定义了构造函数。要允许自定义视图的xml定义,需要按照以下方法扩展类,并使用其他构造函数:

public class SpecializationView extends LinearLayout {

    /* Programmatic Constructor */
    public SpecializationView(Context context) {
        super(context);
        init(context, null, 0);
    }

    /* An XML Constructor */
    public SpecializationView(Context context, AttributeSet attrs) {
        super(context, attrs);
        init(context, attrs, 0);
    }

    /* An XML Constructor */
    public SpecializationView(Context context, AttributeSet attrs, int resId) {
        super(context, attrs, resId);
        init(context, attrs, resId);
    }

    /** 
    * All initialization happens here!
    */
    private void init(Context context, AttributeSet attrs, int resId){
        LayoutInflater inflater = (LayoutInflater) context
            .getSystemService(Context.LAYOUT_INFLATER_SERVICE);
        inflater.inflate(R.layout.layout_specialization, this, true);
    }
}

此定义现在包含xml创建自定义视图的功能(现在可能适用于您)。它工作的原因是你现在将属性集或通过xml定义的属性发送给构造函数。由于您没有包含它,因此在xml中定义时,它不知道如何为自定义视图执行操作,并且您无法访问可能定义为自定义的布局属性。