2012-05-17 7 views
5

Mam układ względny, tj. main.xml, który ustawiam w następujący sposób. Ale teraz muszę umieścić view1 na view2 z width = 200dp i height = 100dp, tak aby view2 był duży jeden i view1 będzie mały na nim.Zmiana programowalnego układu względnego

public void onCreate(Bundle savedInstanceState) 
     { 
      super.onCreate(savedInstanceState); 
      setContentView(R.layout.main); 
     } 

main.xml

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:id="@+id/root" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" > 

    <RelativeLayout 
    android:id="@+id/MainPanel" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:layout_above="@id/panel_bottom" 
    android:layout_gravity="center_horizontal" > 

    <com.proj.demo.view1 
     android:id="@+id/sheet" 
     android:layout_width="match_parent" 
     android:layout_height="match_parent" 
     android:layout_alignWithParentIfMissing="true" 
     android:layout_centerInParent="true" 
     android:layout_toLeftOf="@+id/panel_quick_buttons" 
     /> 

    <com.proj.demo.view2 
     android:id="@+id/sheet2" 
     android:layout_width="match_parent" 
     android:layout_height="match_parent" 
     android:layout_alignWithParentIfMissing="true" 
     android:layout_centerInParent="true" 
     android:layout_toLeftOf="@+id/panel_quick_buttons" 
     /> 

</RelativeLayout> 
</RelativeLayout> 

Odpowiedz

27

Co chcesz osiągnąć? Jeśli chcesz tylko zmienić szerokość i wysokość:

RelativeLayout rl = (RelativeLayout) findViewById(R.id.yourId); 
    rl.getLayoutParams().height = 100; 
    rl.getLayoutParams().width = 100; 
+0

następnie wywołaj funkcję invalidate() z rl. –

+0

Dzięki, doskonale mi pasowało. – user1400285

+0

Nic się nie dzieje, gdy wywołuję rl.invalidate(). Ale zmieni się po przewinięciu ekranu. W każdym razie, aby odświeżyć cały stół? –

Powiązane problemy