Wie erstelle ich eine Schaltfläche, um 50% der Bildschirmbreite in Android auszufüllen?

70

Ich möchte, dass die Schaltfläche immer 50%aus der Breite des Bildschirms gefüllt wird , wenn ich das Gerät horizontal oder vertikal drehe, wird die Schaltfläche immer 50%aus der Breite gefüllt .

Adham
quelle

Antworten:

190

Dies sollte mit weightSum und layout_weight möglich sein:

<LinearLayout
 xmlns:android="http://schemas.android.com/apk/res/android"
 android:layout_height="wrap_content"
 android:layout_width="fill_parent"
 android:orientation="horizontal"
 android:weightSum="1.0">
 <Button
  android:id="@+id/textbox3"
  android:layout_height="wrap_content"
  android:layout_weight=".5"
  android:layout_width="0dip"
  android:textSize="12sp" />
</LinearLayout>
RoflcoptrException
quelle
3

Um dies im Code zu tun.

// Get screen width.
DisplayMetrics metrics = new DisplayMetrics();
WindowManager wm = (WindowManager) this.getSystemService(Context.WINDOW_SERVICE);
wm.getDefaultDisplay().getMetrics(metrics);
final float width = metrics.widthPixels;
LinearLayout.LayoutParams layoutParamsWidth50 = new LinearLayout.LayoutParams(
    (int) (width/2) , ViewGroup.LayoutParams.MATCH_PARENT );
textbox3.setLayoutParams(layoutParamsWidth50);
Ruan
quelle