如何更改linearLayout或RelativeLayout中textview和按钮的顺序?

时间:2013-04-01 19:33:33

标签: android eclipse

我对stackoverflow完全不熟悉,而Android移动开发仅用了几周。

非常感谢stackoverflow,这是我在90%的谷歌搜索中以“Android eclipse”开头的地方。

现在追逐。

我有一个linearLayout,说一个按钮和两个textView元素。

是否可以动态:

  1. 更改订单?
  2. 将其中一些移至另一个linearLayout或relativeLayout?

2 个答案:

答案 0 :(得分:-1)

通过动态你的意思是在java代码?

如果是,那么这些视图也应该动态添加。 然后要更改他们的顺序,您可以从布局中删除它们,然后按照您希望的顺序再次添加它们。 如果您的意思是XML文件,那么您需要做的就是在XML文件中更改它们的顺序。

要为布局添加视图,您应该:

1。按ID:

查找布局
LinearLayout llviews = (LinearLayout) findViewById(R.id.your_linear_layout_id);

2. 然后,您可以为此布局添加视图:

TextView tvText = new TextView();
llviews.addView(tvText); 

3。并删除视图:

llviews.removeView(tvText);

答案 1 :(得分:-1)

  1. 是的,即使在XML中添加Views,也可以动态更改视图的顺序。
  2. 是的,可以将子视图从一个布局移动到另一个布局。
  3. 查看此示例代码:

    public class MainActivity extends Activity {
        private Button button1, button2, button3;
        private CheckBox checkBox1;
        private LinearLayout ll1, ll2;
    
        @Override
        protected void onCreate(Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);
            setContentView(R.layout.activity_main);
    
            ll1 = (LinearLayout) findViewById(R.id.ll1);
            ll2 = (LinearLayout) findViewById(R.id.ll2);
    
            button1 = (Button) findViewById(R.id.button1);
            button1.setOnClickListener(new OnClickListener() {
                @Override
                public void onClick(View arg0) {
                    // Move views around.
                    float button2x = button2.getX();
                    float button2y = button2.getY();
    
                    float checkbox1x = checkBox1.getX();
                    float checkbox1y = checkBox1.getY();
    
                    button2.setX(checkbox1x);
                    button2.setY(checkbox1y);
    
                    checkBox1.setX(button2x);
                    checkBox1.setY(button2y);
                }
            });
    
            button3 = (Button) findViewById(R.id.button3);
            button3.setOnClickListener(new OnClickListener() {
                @Override
                public void onClick(View v) {
                    // Move a view from one layout to another.
                    ll1.removeView(button2);
                    ll2.addView(button2);
                }
            });
    
            button2 = (Button) findViewById(R.id.button2);
    
            checkBox1 = (CheckBox) findViewById(R.id.checkBox1);
        }
    }
    

    === activity_main.xml ===

    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:orientation="vertical" android:id="@+id/ll1">
    
        <Button
            android:id="@+id/button1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginLeft="42dp"
            android:layout_marginTop="22dp"
            android:text="Button" />
    
        <Button
            android:id="@+id/button2"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Button2" />
    
        <CheckBox
            android:id="@+id/checkBox1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginTop="99dp"
            android:text="CheckBox" />
    
        <LinearLayout android:id="@+id/ll2"
            android:layout_width="match_parent"
            android:layout_height="wrap_content" >
    
            <Button
                android:id="@+id/button3"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="Button3" />
    
        </LinearLayout>
    
    </LinearLayout>