我正在android中设计自定义对话,为此我将xml文件设计为
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:background="@color/item_bg_color"
android:layout_width="fill_parent" android:layout_height="wrap_content" android:orientation="horizontal">
<TextView android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/custom_dialog_text"
android:textColor="#000000"
android:textSize="14dip"
android:typeface="serif"
android:singleLine="false"
android:text="You are not authorized to use this application."
android:layout_marginTop="10dip"/>
<Button android:id="@+id/custom_button_ok"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Ok"
android:layout_below="@+id/custom_dialog_text"
android:layout_toRightOf="@+id/custom_dialog_text"/>
</RelativeLayout>
问题 :
我想在 TextView 的末尾(右)显示按钮,并且 textview 的文本应该超过一行(如果必须显示更多字符)。但是当我使用这个布局时,按钮不会出现在任何地方。
我也使用了 LinearLayout 和 TableLayout ,在这两种情况下,按钮都出现了一小部分。我哪里错了?