gpt4 book ai didi

java - ImageButton 出来很小。 Java-Android开发

转载 作者:行者123 更新时间:2023-12-01 13:06:14 27 4
gpt4 key购买 nike

我使用相对布局在 XML 中制作了图像按钮。当我制作它们时,它们看起来不错,但是当我在手机上运行它时,它看起来很小!我希望它扩展到我的设备的宽度(或它所到达的任何设备的宽度)

这是我的 XML:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >

<ImageButton
android:id="@+id/prewedbutton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/weddingbutton"
android:layout_alignParentTop="true"
android:layout_marginTop="90dp"
android:contentDescription="@drawable/prewedbutton"
android:src="@drawable/prewedbutton" />

<ImageButton
android:id="@+id/weddingbutton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"
android:layout_marginBottom="103dp"
android:contentDescription="@drawable/weddingbutton"
android:src="@drawable/weddingbutton" />

</RelativeLayout>

这是我的 Java:

package com.example.ijazphotography;

import android.os.Bundle;
import android.app.Activity;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.ImageButton;
import android.content.Intent;

public class PhotographyActivity extends Activity {

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_photography);
// Show the Up button in the action bar.

ImageButton prewed = (ImageButton) findViewById(R.id.prewedbutton);
prewed.setOnClickListener(new OnClickListener() {

public void onClick(View v) {
Intent intent = new Intent(v.getContext(), PreWedActivity.class);
startActivityForResult(intent, 0);

}
});

ImageButton wed = (ImageButton) findViewById(R.id.weddingbutton);
wed.setOnClickListener(new OnClickListener() {

public void onClick(View v) {
Intent intent = new Intent(v.getContext(), Wedding.class);
startActivityForResult(intent, 0);
}
});
}
}

最佳答案

尝试使用 android:layout_width="fill_parent"android:scaleType="fitXY" ,请告诉我你的结果。

关于java - ImageButton 出来很小。 Java-Android开发,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23245051/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com