Android:更改警报对话框图标的位置

前端之家收集整理的这篇文章主要介绍了Android:更改警报对话框图标的位置前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在 android xml文件中有一个警告对话框.我的警告对话框左侧有一个图标.我想将图标的位置改为右侧.
我也不想使用custum对话框

像这样 :

解决方法

a)如果你在对话框标题(TextView)中将它作为drawable,只需使用drawableRight
android:drawableRight="@drawable/yourIcon"

b)如果它是RelativeLayout中的ImageView / ImageButton,请使用alignParentRight

android:layout_alignParentRight="true"

c)如果它是LinearLayout中的ImageView / ImageButton,则将其放在TextView之后

<LinearLayout
        android:layout_width="300dp"
        android:layout_height="300dp">

        <TextView
            android:text="some text"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content" />

        <ImageView
            android:src="@drawable/yourIcon"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content" />

</LinearLayout>

希望这对你有所帮助.

原文链接:https://www.f2er.com/android/315033.html

猜你在找的Android相关文章