-1
我想創建一個自定義對話框,其中我想提示用戶輸入密碼。爲此我正在擴大Dialog
Class.But我的對話框看起來像這樣這不是我想要的 自定義對話框佈局
這裏是我的代碼和佈局文件
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/colorMenuBackground"
android:orientation="vertical"
android:padding="15dip" >
<TextView
android:id="@+id/textView2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:text="Login"
android:textAppearance="?android:attr/textAppearanceLarge"
android:textColor="#ffffff" />
<TableRow
android:layout_width="fill_parent"
android:layout_height="2dip"
android:background="#ffffff"
android:layout_marginBottom="15dip">
</TableRow>
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/register_form_textview_background"
android:padding="10dip"
android:text="Password" />
<EditText
android:id="@+id/etmyPass"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="15dip"
android:background="@drawable/edittext"
android:ems="10"
android:inputType="textPassword"
android:padding="10dip" >
</EditText>
<Button
android:id="@+id/blogin"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/app_button"
android:text="Login"
android:textStyle="bold" />
</LinearLayout>
customDialog.java
package com.example.mywebaccounts.Dialogs;
import com.example.mywebaccounts.R;
import android.app.Dialog;
import android.content.Context;
import android.os.Bundle;
public class LoginDialog extends Dialog{
public LoginDialog(Context context){
super(context);
}
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.layout_login_dialog);
}
}
你「想要」什麼? –
如果您試圖控制對話框的大小,您應該閱讀以下內容:http://stackoverflow.com/a/6631310/220710 –
我希望對話框的寬度更大,例如正確的對話框 –