动态用户界面创建问题

时间:2011-05-09 11:13:27

标签: android user-interface view

如何使用事件创建动态用户界面...

嗨朋友我想创建一个用户界面。我将有一些按钮和标签 但按钮和标签的数量将随时间变化,具体取决于从服务器检索的数据......

任何人都可以指导我解决这个问题......有用的链接和指导......

1 个答案:

答案 0 :(得分:0)

这使用两个线性布局来实现网格。更高级别的LinearLayout在linearlayout.xml中定义,并垂直保存元素视图。在每个垂直视图中,Row(自定义LinearLayout)是实例化的,并且在这样做时,指定事件处理程序。此LinearLayout水平保存其元素。

public class YourActivity extends Activity {
    @Override
    public void onCreate(Bundle bundle){
        super.onCreate(bundle);
        setContentView(R.layout.linearlayout);

        ViewGroup main = (ViewGroup) findViewById(R.id.linearlayout);
        main.addView(new Row(this));
        main.addView(new Row(this));
    }
    private class Row extends LinearLayout {
        public Row(Context context) {
            super(context);
            TextView text = new TextView(context);
            Button button = new Button(context);
            text.setText("Text");
            button.setText("Button");
            button.setOnClickListener(new View.OnClickListener() {
                @Override
                public void onClick(View v) {
                    Toast.makeText(v.getContext(), "Button Clicked", Toast.LENGTH_SHORT).show();
                }
            });
            this.addView(text);
            this.addView(button);
        }
    }
}

linearlayout.xml:

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

这是你在找什么?