gpt4 book ai didi

Android - 使 AlertDIalog 按钮大小统一

转载 作者:行者123 更新时间:2023-11-29 14:24:59 24 4
gpt4 key购买 nike

我有一个警告对话框,其中以编程方式添加了正负按钮。在对话框布局中,还有两个按钮,位于 AlertDialog 的 native 按钮之上。

dialog

当这两个紧挨在一起时,我意识到在此对话框中,原生的正面/负面/中性按钮的权重并不相等。它们的文本内容决定了它们的水平权重,而不是每个占据对话框的 50%(如果有 3 个按钮则占 33%)。所以在我的例子中,否定按钮的文本比肯定按钮的文本长,我们得到的东西看起来像我上面发布的图像。

我找不到解决这个问题的方法,有人有想法吗?

谢谢!

请求的 XML:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >

<TextView android:id="@+id/rcd_msg"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_margin="8dp"
android:text="@string/rating_dialog_text"
android:textSize="14dp"
android:textColor="@android:color/white"
android:gravity="center"/>

<RatingBar android:id="@+id/rcd_rating_bar"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/rcd_msg"
android:layout_margin="8dp"
android:paddingBottom="10dp"
android:numStars="5"
android:rating="0"
android:layout_centerHorizontal="true"/>

<RelativeLayout android:layout_height="56dp"
android:layout_width="match_parent"
android:layout_below="@id/rcd_rating_bar">

<LinearLayout android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal">

<RelativeLayout android:id="@+id/rcd_image"
android:layout_width="0dp"
android:layout_height="fill_parent"
android:background="@color/selectable_transparent"
android:layout_weight="1">

<TextView android:id="@+id/rcd_image_text"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:layout_centerInParent="true"
android:paddingLeft="0dp"
android:gravity="center"
android:text="@string/add_image"
android:textColor="@android:color/white"
android:textSize="16sp"
android:clickable="true"/>

<ImageView android:id="@+id/rcd_image_img"
android:layout_height="32dp"
android:layout_width="32dp"
android:layout_centerVertical="true"
android:layout_margin="8dp"
android:layout_toLeftOf="@id/rcd_image_text"
android:scaleType="centerInside"
android:src="@android:drawable/ic_menu_camera"/>

</RelativeLayout>

<RelativeLayout android:id="@+id/rcd_comment"
android:layout_width="0dp"
android:layout_height="fill_parent"
android:background="@color/selectable_transparent"
android:layout_weight="1">

<TextView android:id="@+id/rcd_comment_text"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:layout_centerInParent="true"
android:paddingRight="6dp"
android:gravity="center"
android:text="@string/add_comment"
android:textColor="@android:color/white"
android:textSize="16sp"
android:clickable="true"/>

<ImageView android:id="@+id/rcd_comment_img"
android:layout_height="32dp"
android:layout_width="32dp"
android:layout_centerVertical="true"
android:layout_margin="4dp"
android:layout_toRightOf="@id/rcd_comment_text"
android:scaleType="centerInside"
android:src="@drawable/ic_menu_comment"/>

</RelativeLayout>

</LinearLayout>

<LinearLayout android:layout_width="1dp"
android:layout_height="38dp"
android:layout_centerHorizontal="true"
android:layout_alignParentBottom="true"
android:orientation="horizontal"
android:layout_margin="10dp"
android:background="@color/transparent_white" />

</RelativeLayout>

</RelativeLayout>

最佳答案

想出了一个解决方案...不知道为什么我以前没有想到。

我做了以下事情:

mRateConcertDialog.setOnShowListener(new OnShowListener() {

@Override
public void onShow(DialogInterface d) {
Button posButton = mRateConcertDialog.getButton(DialogInterface.BUTTON_POSITIVE);
Button negButton = mRateConcertDialog.getButton(DialogInterface.BUTTON_NEGATIVE);

LayoutParams posParams = (LayoutParams) posButton.getLayoutParams();
posParams.weight = 1;
posParams.width = LayoutParams.MATCH_PARENT;

LayoutParams negParams = (LayoutParams) negButton.getLayoutParams();
negParams.weight = 1;
negParams.width = LayoutParams.MATCH_PARENT;

posButton.setLayoutParams(posParams);
negButton.setLayoutParams(negParams);
}
});

基本上,您必须在显示对话框后调整按钮的大小。因此,创建一个 onShowListener,您可以通过这种方式设置权重和宽度。感谢您的评论,我希望这可以帮助将来的人。

关于Android - 使 AlertDIalog 按钮大小统一,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17982357/

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