只是寻求一些帮助。如果这太模糊,请告诉我。
我正在尝试在此处找到的“合并布局”示例: http://developer.android.com/resources/articles/layout-tricks-merge.html
我似乎无法让它发挥作用。页面上的源下载不包括所需的所有文件。我正在粘贴下面的一些代码并注释掉了。当这些未被评论时,我收到了大量的错误。如果在我开始粘贴错误之前有人有任何建议,那就太棒了......
OkCancelBar:
package com.example.android.merge;
import android.content.Context;
import android.content.res.TypedArray;
import android.util.AttributeSet;
import android.view.Gravity;
import android.view.LayoutInflater;
import android.widget.Button;
import android.widget.LinearLayout;
public class OkCancelBar extends LinearLayout {
public OkCancelBar(Context context, AttributeSet attrs) {
super(context, attrs);
setOrientation(HORIZONTAL);
setGravity(Gravity.CENTER);
setWeightSum(1.0f);
LayoutInflater.from(context).inflate(R.layout.okcancelbar, this, true);
/*
TypedArray array = context.obtainStyledAttributes(attrs, R.styleable.OkCancelBar, 0, 0);
String text = array.getString(R.styleable.OkCancelBar_okLabel);
if (text == null) text = "Ok";
((Button) findViewById(R.id.okcancelbar_ok)).setText(text);
text = array.getString(R.styleable.OkCancelBar_cancelLabel);
if (text == null) text = "Cancel";
((Button) findViewById(R.id.okcancelbar_cancel)).setText(text);
array.recycle();
*/
}
}
main.xml中:
<?xml version="1.0" encoding="utf-8"?>
<merge
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:okCancelBar="http://schemas.android.com/apk/res/com.example.android.merge">
<ImageView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:scaleType="center"
android:src="@drawable/golden_gate" />
<com.example.android.merge.OkCancelBar
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_gravity="bottom"
android:paddingTop="8dip"
android:gravity="center_horizontal"
android:background="#AA000000"
<!--
okCancelBar:okLabel="Save"
okCancelBar:cancelLabel="Don't save"
-->
/>
</merge>
答案 0 :(得分:4)
我查看了压缩源,没有res / values / attrs.xml文件。那很奇怪。
创建attrs.xml文件并输入下面列出的代码:
<resources>
<declare-styleable name="OkCancelBar">
<attr name="okLabel" format="string" />
<attr name="cancelLabel" format="string" />
</declare-styleable>
</resources>
它应该现在可以使用,但我没时间测试它,抱歉。
答案 1 :(得分:2)
在该示例中缺少几个文件。即:
在布局文件夹下: 它应该有main.xml,okcancelbar.xml和okcancelbar_button.xml。 在值文件夹下: 它应该有attrs.xml
示例文章中提供了main.xml和okcancelbar.xml的内容。 okcancelbar_button.xml需要将一个按钮定义为:
<?xml version="1.0" encoding="utf-8"?>
<Button
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/button"
android:orientation="vertical"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
</Button>
attrs.xml应该提供标签定义:
<resources>
<declare-styleable name="OkCancelBar">
<attr name="okLabel" format="string" />
<attr name="cancelLabel" format="string" />
</declare-styleable>
</resources>
然后一切都会聚集在一起。
答案 2 :(得分:1)
pawelzieba&amp; X射线的答案是正确的也看看这个修改。
将以下代码放入okcancelbar.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 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"
android:orientation="vertical" >
<Button
android:id="@+id/okcancelbar_ok"
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
</Button>
<Button
android:id="@+id/okcancelbar_cancel"
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
</Button>
</LinearLayout>
并按照以下修改OkCancelBar.java以便更好地理解
public class OkCancelBar extends LinearLayout
{
Context mContext;
public OkCancelBar(Context context, AttributeSet attrs)
{
super(context, attrs);
setOrientation(HORIZONTAL);
setGravity(Gravity.CENTER);
setWeightSum(1.0f);
mContext = context;
LayoutInflater.from(context).inflate(R.layout.okcancelbar, this, true);
TypedArray array = context.obtainStyledAttributes(attrs, R.styleable.OkCancelBar, 0, 0);
String text = array.getString(R.styleable.OkCancelBar_okLabel);
if (text == null) text = "Ok";
//((Button) findViewById(R.id.button)).setText(text);
((Button) findViewById(R.id.okcancelbar_ok)).setText(text);
text = array.getString(R.styleable.OkCancelBar_cancelLabel);
if (text == null) text = "Cancel";
//((Button) findViewById(R.id.button)).setText(text);
((Button) findViewById(R.id.okcancelbar_cancel)).setText(text);
Button btnCancel = (Button) findViewById(R.id.okcancelbar_cancel);
btnCancel.setOnClickListener(new View.OnClickListener()
{
@Override
public void onClick(View v)
{
Toast.makeText(mContext, "Cancel is Clicked...", Toast.LENGTH_LONG).show();
}
});
Button btnOk = (Button) findViewById(R.id.okcancelbar_ok);
btnOk.setOnClickListener(new View.OnClickListener()
{
@Override
public void onClick(View v)
{
Toast.makeText(mContext, "OK is pressed...", Toast.LENGTH_LONG).show();
}
});
array.recycle();
}
}