如何将AttributeSet传递给自定义视图

时间:2010-09-13 23:30:43

标签: android

如何将当前AttributeSet传递给自定义View类?如果我在参数中使用只有Context的构造函数,我会丢失所有主题,并且能够在xml中为该自定义View使用“style”标记。

我所做的是创建一个包含我自己在xml文件中的自定义视图的活动,然后以编程方式创建一个新活动并将其添加到布局中。我发现在xml中制作的那个具有适当的样式,而我以编程方式创建的那个没有。

据我所知,两者之间的区别在于系统使用CustomLayout1(Context context, AttributeSet attrs)构造函数。问题是当我以编程方式创建它时,我无法弄清楚如何让应用程序将AttributeSet传递给此自定义视图。

这是活动:

import android.app.Activity;
import android.os.Bundle;
import android.widget.LinearLayout;

public class ThemeOne extends Activity {

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);

        LinearLayout layout = (LinearLayout) findViewById(R.id.mainlayout);

        layout.addView(new CustomLayout1(getApplicationContext()));
    }
}

这是主要的xml:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
 android:orientation="vertical" 
 android:id="@+id/mainlayout"
 android:layout_width="fill_parent"
 android:layout_height="fill_parent">
 <com.clearsync.test.theme1.CustomLayout1 android:id="@+id/maincustom"
  android:layout_width="fill_parent"
  android:layout_height="wrap_content" />
</LinearLayout>

自定义视图类:

import com.clearsync.test.theme1.R;

import android.content.Context;
import android.util.AttributeSet;
import android.view.LayoutInflater;
import android.widget.LinearLayout;

public class CustomLayout1 extends LinearLayout {
 private Context context = null;

 public CustomLayout1(Context context) {
  super(context);
  this.context = context;
  create();
 }

 public CustomLayout1(Context context, AttributeSet attrs) {
  super(context, attrs);
  this.context = context;
  create();
 }

 private void create(){
  LayoutInflater layoutInflater = (LayoutInflater)context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
  layoutInflater.inflate(R.layout.inflateme, this, true);
 }
}

最后,自定义视图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">
 <TextView android:layout_width="wrap_content"
  android:layout_height="wrap_content" 
  android:text="Oh, Hewroh..."
  style="?textview_style1" />
</LinearLayout>

3 个答案:

答案 0 :(得分:27)

而不是使用layout.addView(new CustomLayout1(getApplicationContext()))构建它;使用Activity中的LayoutInflater对其进行充气。

LayoutInflater inflater = LayoutInflater.from(this);
inflater.inflate(R.layout.yourcustomviewxml, layout);

答案 1 :(得分:3)

您的代码会在自定义视图的线性布局中创建LinearLayout。正确的方法是从以下位置更改自定义视图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">
 <TextView android:layout_width="wrap_content"
  android:layout_height="wrap_content" 
  android:text="Oh, Hewroh..."
  style="?textview_style1" />
</LinearLayout>

<merge xmlns:android="http://schemas.android.com/apk/res/android">
<TextView android:layout_width="wrap_content"
      android:layout_height="wrap_content" 
      android:text="Oh, Hewroh..."
      style="?textview_style1" 
/>
</merge>

答案 2 :(得分:2)

你想在这里完成什么?看起来你在这里使用你的create方法有一个无限的递归循环,因为inflate()会调用带属性的构造函数。无论如何回答你的问题,你会在构造函数中获得属性的属性!

这是从XML加载时调用的构造函数,否则它会调用您提供的其他构造函数之一。

另一个有用的事情是,您可以从静态View方法更容易地获得对inflater的引用。 View.inflate:D