我正在尝试创建一个自定义窗口小部件,我可以在我的活动布局中使用它。我为小部件创建了一个扩展View
。
import android.app.Service;
import android.content.Context;
import android.content.res.TypedArray;
import android.graphics.drawable.Drawable;
import android.util.AttributeSet;
import android.view.LayoutInflater;
import android.view.View;
import android.widget.ImageView;
import be.robinj.ubuntu.R;
public class AppLauncher extends View
{
private String name;
private String description;
private boolean special;
private AppIcon icon;
private View view;
public AppLauncher (Context context, AttributeSet attrs)
{
super (context, attrs);
LayoutInflater inflater = (LayoutInflater) context.getSystemService (Service.LAYOUT_INFLATER_SERVICE);
this.view = inflater.inflate (R.layout.widget_applauncher, null, false);
TypedArray styleAttrs = context.getTheme ().obtainStyledAttributes (attrs, R.styleable.AppLauncher, 0, 0);
this.name = styleAttrs.getString (R.styleable.AppLauncher_label);
this.description = styleAttrs.getString (R.styleable.AppLauncher_description);
this.special = styleAttrs.getBoolean (R.styleable.AppLauncher_special, false);
this.icon = new AppIcon (styleAttrs.getDrawable (R.styleable.AppLauncher_icon));
}
...
}
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="64dp"
android:layout_height="64dp">
<LinearLayout
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#ffff9243"
android:layout_margin="6dp">
<LinearLayout
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/launcher_icon_bg">
<ImageView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/imgIcon"
android:src="@drawable/ic_launcher" />
</LinearLayout>
</LinearLayout>
</LinearLayout>
<?xml version="1.0" encoding="utf-8"?>
<resources>
<declare-styleable name="AppLauncher">
<attr name="label" format="string" />
<attr name="description" format="string" />
<attr name="icon" format="integer" />
<attr name="special" format="boolean" />
</declare-styleable>
</resources>
这一切都很好,但Java代码最好只包含逻辑部分。 我无法弄清楚的是如何指定哪个布局XML文件应该用于我的自定义视图/小部件。 Inflating 布局可能会加载它。但inflate ()
方法需要第二个和第三个参数。我可以找到的每个示例都显示this
作为第二个参数传递,但第二个参数应为ViewGroup
,而this
扩展View
。我从哪里神奇地获得了这个必需的ViewGroup
对象?传递null
和false
不会引发错误,但也不会执行任何其他操作(运行应用时不显示任何内容)。
答案 0 :(得分:1)
使用以下代码在自定义视图中充气xml
public AppLauncher (Context context, AttributeSet attrs)
{
super (context, attrs);
LayoutInflater inflater = (LayoutInflater) context
.getSystemService(Service.LAYOUT_INFLATER_SERVICE);
View parent = inflater.inflate(R.layout.home_activity, this);
}
答案 1 :(得分:1)
您的源代码似乎要创建ViewGroup
,因此您需要扩展相应的类LinearLayout。接下来,您可以照常创建一个xml文件,并在自定义ViewGroup
构造函数中对其进行充气:
LayoutInflater inflater = (LayoutInflater) context
.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
inflater.inflate(R.layout.ur_view, this);
然后,您可以通过以下方式在任何布局中注入自定义视图:
<package.def.AppLauncher .../>
或:
<View
class="package.defAppLauncher"
/View>
答案 2 :(得分:0)
感谢Pr38y和eldjon LayoutInflater
最后,最大的问题是我需要扩展LinearLayout
而不是View
。