与2.2中的Android微调器相关的错误与布局排列有关

时间:2010-12-28 19:19:50

标签: java android layout

以下是我在Android应用程序中遇到的错误的链接。我认为一个简单的视频可以更直接,更容易理解,而不是试图通过一个巨大的文本墙来解释它。

http://www.youtube.com/watch?v=9V3v854894g

我已经在这个问题上打了一针墙一天半。我只发现它可以通过最近更改XML布局来解决,这对我来说完全没有意义。我不知道如何正确修复它,或者是一种解决问题的方法,因为我需要在我的应用程序中使用嵌套布局。

感谢大家的帮助!

以下是代码:

import android.app.Activity;
import android.os.Bundle;
import android.view.View;
import android.widget.AdapterView;
import android.widget.ArrayAdapter;
import android.widget.Spinner;
import android.widget.AdapterView.OnItemSelectedListener;

public class Builder extends Activity {
    private Spinner mCompSelect;
    private Spinner mNameSelect;
    private int[] mCompColorAsBuilt;
    private int mComponent;

    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.builder);

        mCompColorAsBuilt = new int[3];

        //Attach our objects
        mCompSelect = (Spinner) findViewById(R.id.component);
        mNameSelect = (Spinner) findViewById(R.id.component_name);

        //Attach an adapter to the top spinner
        ArrayAdapter<CharSequence> a = ArrayAdapter.createFromResource(this, R.array.cc_components, android.R.layout.simple_spinner_item);
        a.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);
        mCompSelect.setAdapter(a);
        //Create a listener when the top spinner is clicked
        mCompSelect.setOnItemSelectedListener(new OnItemSelectedListener() {
            public void onItemSelected(AdapterView<?> parent, View view, int position, long id) {
                //Save the position
                mComponent = position;
                //Create a new adapter to attach to the bottom spinner based on the position of the top spinner
                int resourceId = Builder.this.getResources().getIdentifier("component"+Integer.toString(mComponent)+"_color", "array", Builder.this.getPackageName());      
                ArrayAdapter<CharSequence> a = ArrayAdapter.createFromResource(Builder.this, resourceId, android.R.layout.simple_spinner_item);
                a.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);
                mNameSelect.setAdapter(a);
                //Set the position of the bottom spinner to the saved position
                mNameSelect.setSelection(mCompColorAsBuilt[mComponent]);
            }
            public void onNothingSelected(AdapterView<?> parent) {

            }
        });

        //Attach an adapter to the bottom spinner
        int resourceId = this.getResources().getIdentifier("component"+Integer.toString(mComponent)+"_color", "array", this.getPackageName());      
        ArrayAdapter<CharSequence> b = ArrayAdapter.createFromResource(this, resourceId, android.R.layout.simple_spinner_item);
        b.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);
        mNameSelect.setAdapter(b);
        mNameSelect.setOnItemSelectedListener(new OnItemSelectedListener() {
            public void onItemSelected(AdapterView<?> parent, View view, int position, long id) {       
                //Save the position of the bottom spinner
                mCompColorAsBuilt[mComponent] = position;
            }
            public void onNothingSelected(AdapterView<?> parent) {
            }
        });
    }
}

XML

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

    <Spinner
        android:id="@+id/component"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_toLeftOf="@+id/finish"
        android:drawSelectorOnTop="true"
        android:prompt="@string/component_spinner" />

    <LinearLayout
        android:orientation="horizontal"
        android:layout_alignParentBottom="true"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content" >

        <Spinner
            android:id="@+id/component_name"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:drawSelectorOnTop="true"
            android:prompt="@string/component_name_spinner" />
    </LinearLayout>
</RelativeLayout>

1 个答案:

答案 0 :(得分:1)

作为黑客,请尝试在受影响的invalidate()上致电Spinner。首先,在致电setSelection()后尝试。如果失败,请尝试使用postDelayed()上的Spinner稍稍调用invalidate()(例如,50毫秒)。

此外,我鼓励您创建一个演示项目,其中包含两个活动(或者可能只是一个包含两个布局的活动),用于说明此行为,并将其发布并解释为http://b.android.com