AndroidカスタムDialog
3363 ワード
カスタマイズされたdialogは私たちが普段開発したり勉強したりするのによく使われています.ネット上にはAlterDialogやDialogについてたくさんあります.builder
のクラスが作成されました.
私たちはいつも一番いいです.私たちはlayoutにいます.xmlで私たちのレイアウトを定義してから、都dialogの形式で表すことができます.これも私が好きです.
次はすぐ
mainx.xml
main.xml
のクラスが作成されました.
私たちはいつも一番いいです.私たちはlayoutにいます.xmlで私たちのレイアウトを定義してから、都dialogの形式で表すことができます.これも私が好きです.
次はすぐ
package endual.man;
import android.app.Activity;
import android.app.AlertDialog;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
public class MainActivity extends Activity {
private Button btn ;
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.mainx);
btn = (Button) this.findViewById(R.id.button1) ;
btn.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
// TODO Auto-generated method stub
AlertDialog myDialog = new AlertDialog.Builder(MainActivity.this).create();
myDialog.show();
// show dialog contentView。 。(requestFeature must
// be called before add content)
myDialog.getWindow().setContentView(R.layout.main);
}
}) ;
}
}
mainx.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res/com.android.gif"
android:orientation="vertical"
android:layout_width="220px"
android:layout_height="176px"
android:background="@drawable/ic_launcher"
android:id="@+id/layout_root"
>
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button" />
</LinearLayout>
main.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res/com.android.gif"
android:orientation="vertical"
android:layout_width="220px"
android:layout_height="176px"
android:background="@drawable/ic_launcher"
android:id="@+id/layout_root"
>
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/ic_launcher"
android:layout_marginLeft="10px"
/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="loading......"
android:gravity="center"
/>
</LinearLayout>