相对布局问题

时间:2011-07-29 07:17:57

标签: android gridview imagebutton

我实现了一个系统,使图像按钮等于drawables(餐厅标识)的数量,所以我过滤以前缀“rest”开头的图像。它可以到这里。然后我创建一个GridWiev并将按钮放到它上面,根布局是RelativeLayout。但是,编译后它不会显示任何图像按钮。有我的代码和xml。 谢谢你的帮助。

public class RestListActivity extends Activity{
    ImageButton [] buttons;
    RelativeLayout rl;
    int restCount=0;
    Resources a;
    int resIndex=0;
    boolean resFound=false;
    int last;
    int resCount=0;
    GridView gv;
    // TODO Auto-generated constructor stub
    @Override
    public void onCreate (Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        rl = (RelativeLayout) findViewById(R.id.relativeLayoutRest);
        if(rl==null)
            Log.i("***********","RLOUT NULL AGA");
        else
            Log.i("***********","RLOUT VAR AGA");
        setContentView(R.layout.restlist);
        Log.i("asd","asd");

        gv=new GridView(this);
        a=this.getResources();
        int i=0x7f020000;
        boolean done=true;
        if(rl==null)
            Log.i("***********","RLOUT NULL AGA");
        else
            Log.i("***********","RLOUT VAR AGA");
        Log.i("asd","asd");
        try
        {
            Log.i("rest buttons","______");
            for (i=0x7f020000 ;done&&i<0x7f020040;i++)
            {
                Log.i("rest buttons","----");
                String name=a.getResourceName(i);
                name=name.substring(name.indexOf(':')+1);
                name=name.substring(9);
                if(name.startsWith("rest"))
                {
                    if(!resFound)
                    {
                        resIndex=i;
                        resFound=true;
                    }
                    Log.i("rest buttons",name);

                    resCount++;
                }
            }
        }
        catch(Exception e)
        {
            last=i;
            Log.i("LAST",i+"");
            done=false;
            e.printStackTrace();
        }
        buttons=new ImageButton[resCount];
        Button orderButton = (Button)findViewById(R.id.adbutton);
        orderButton.setText("REKLAMLAR");
        orderButton.setOnClickListener(new View.OnClickListener() { 
            public void onClick(View view) { 
                Log.i("ACTION","AD BUTTON CLICKED");
                try
                {
                    Intent i = new Intent(RestListActivity.this,AVMSystemActivity.class);   
                    startActivity(i);
                }
                catch(Exception e)
                {
                    Log.i("cort",e.toString());
                }
            } 
        });
        if(rl==null)
            Log.i("------------","RLOUT NULL AGA");
        else
            Log.i("------------","RLOUT VAR AGA");
        //************************************************************************************

//************************************************************************************
        for(int j=resIndex,f=0;j<resIndex+resCount;j++,f++)
        {
            try
            {
                Log.i("rest buttons","XXXXX");
                String name=a.getResourceName(j);
                name=name.substring(name.indexOf(':')+1);
                name=name.substring(9);
                if(name.startsWith("rest"))
                {
                    Log.i("BUTTON NAME",name);
                    buttons[f]=new ImageButton(this);
                    buttons[f].setImageDrawable(a.getDrawable(j));
                    buttons[f].setOnClickListener(new View.OnClickListener() { 
                        public void onClick(View view) { 
                            Log.i("ACTION","BUTTON CLICKED");
                        } 
                    });
                    //imageView.setImageDrawable(a.getDrawable(i));//------
                    //imageView.setBackgroundDrawable(a.getDrawable(i));
                    gv.addView(buttons[f], f);
                }
            }
            catch(Exception e)
            {
                e.printStackTrace();
                break;
            }
        }
        if(rl==null)
            Log.i("RLRLRL","NULL");
        if(gv==null)
            Log.i("GVGVGV   ","NULL");
        rl.addView(gv);

    }


}

这是XML

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/relativeLayoutRest"
    android:layout_width="fill_parent" android:layout_height="fill_parent">
    <Button android:layout_alignParentLeft="true"
        android:layout_width="50px" android:id="@+id/adbutton"
        android:layout_height="fill_parent" android:text="R\nE\nK\nL\nA\nM\nL\nA\nR"
        android:textStyle="bold"></Button>
    <ScrollView android:id="@+id/scrollViewRest" android:layout_width="wrap_content" android:layout_height="wrap_content">
        <LinearLayout android:id="@+id/linearLayoutRest" android:paddingLeft="50px" android:layout_height="fill_parent" android:layout_width="fill_parent"></LinearLayout>
    </ScrollView>
</RelativeLayout>

1 个答案:

答案 0 :(得分:0)

写下这一行

rl =(RelativeLayout)findViewById(R.id.relativeLayoutRest);

此行之后 setContentView(R.layout.restlist);

相关问题