0

現在、1 つのアクティビティに対して 6 つのボタンを持つ Android アプリを実装しようとしています。プログラムでボタンのマージンを設定しようとしていますが、ボタンが1つしかない場合、問題なく設定されます。しかし、複数のボタンで試してみると、すべてアプリの左上隅に設定されています。どうすればいいのかわからないので、助けていただければ幸いです。レイアウトとアクティビティ コードは次のとおりです。

private void initializeUIElements() 
{

    Display display = getWindowManager().getDefaultDisplay();

    int width = display.getWidth();
    int height = display.getHeight();

    LayoutParams params = new LayoutParams(
            LayoutParams.WRAP_CONTENT,      
            LayoutParams.WRAP_CONTENT
    );
    playButton = (Button) (findViewById(R.id.play_button));

    final ViewGroup.MarginLayoutParams lpt =(MarginLayoutParams)playButton.getLayoutParams();
    lpt.setMargins((int)(width/2.4),(height/4),(int)(width/2.4),(height/4));
    playButton.setLayoutParams(lpt);

    facebookButton = (Button) (findViewById(R.id.facebook_button));
    lpt.setMargins(100,400,380,400);
    facebookButton.setLayoutParams(lpt);

    t = (TextView) (findViewById(R.id.textView1));
    t.setText(width + " " + height);



    twitterButton = (Button) (findViewById(R.id.twitter_button));
    topTenButton = (Button) (findViewById(R.id.top_ten_button));
    yayinAkisiButton = (Button) (findViewById(R.id.yayin_akisi_button));
    son5Button = (Button) (findViewById(R.id.son_5_button));


    playButton.setOnClickListener(this);
    facebookButton.setOnClickListener(this);
    twitterButton.setOnClickListener(this);
    topTenButton.setOnClickListener(this);
    yayinAkisiButton.setOnClickListener(this);
    son5Button.setOnClickListener(this);

}

XML レイアウト コードは次のとおりです。

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/rl1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="left"
android:orientation="vertical"
tools:context=".MainActivity" >

<ImageView
        android:id="@+id/main_bg"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:scaleType="fitXY"
        android:src="@drawable/bg" />

<Button
    android:id="@+id/facebook_button"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Facebook" 
    android:onClick="true"/>


<Button
    android:id="@+id/son_5_button"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Son 5" />

<Button
    android:id="@+id/yayin_akisi_button"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Yayın Akışı" />

<Button
    android:id="@+id/top_ten_button"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="TopTen" />

<Button
    android:id="@+id/twitter_button"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Twitter" />


<Button
    android:id="@+id/play_button"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Play" />

<TextView
    android:id="@+id/textView1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentBottom="true"
    android:layout_centerHorizontal="true"
    android:layout_marginBottom="193dp"
    android:text="TextView" />

</RelativeLayout>
4

1 に答える 1