对话框的自定义文本实现OnClick Listener Android

时间:2013-02-08 06:19:53

标签: android

朋友我只想设置自定义字体表格我的资产/字体文件夹 我的Java代码看起来像这样

package customtext;
import android.app.Dialog;  
import android.content.Context;  
import android.os.Bundle;  
import android.view.View;  
import android.view.Window;
import android.widget.Button;
public class Custom extends Dialog implements android.view.View.OnClickListener{  
    public Custom(Context context) {  
        super(context);
        requestWindowFeature(Window.FEATURE_NO_TITLE);
}  
Button btn;  
    @Override  
    protected void onCreate(Bundle savedInstanceState) {  
        super.onCreate(savedInstanceState);  
        setContentView(R.layout.custom);  
        btn=(Button) findViewById(R.id.dismis_dialog);  
        btn.setOnClickListener(this);  
    }  
    @Override  
    public void onClick(View v) {  
        dismiss();  
    }  
}  

当我尝试添加像this这对我不起作用时

给出错误

这是我的XML

    <?xml version="1.0" encoding="utf-8"?>  
   <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"  
   android:layout_width="fill_parent"  
   android:layout_height="fill_parent"   
   android:orientation="vertical"
   style="@style/Theme.CustomDialog"   >

       <FrameLayout
           android:layout_width="250sp"
           android:layout_height="70sp"
           android:background="#ee8f03" >
            <TextView
                 android:layout_width="180sp"  
                 android:layout_height="wrap_content"   
                 android:id="@+id/sharedialog"
                 android:text="@string/msg"  
                 android:textColor="#272b2d"
                 android:background="#ef8e01"
                 android:layout_gravity="center" >  
            </TextView>  
       </FrameLayout>

       <FrameLayout
           android:layout_width="250sp"
           android:layout_height="70sp"
           android:background="#fff" >

           <Button 
             android:layout_width="wrap_content"  
             android:layout_height="wrap_content"  
             android:layout_gravity="bottom"
             android:clickable="true" 
             android:id="@+id/dismis_dialog"  
             android:text="@string/dismis"/> 
       </FrameLayout>

  </LinearLayout>  

请告诉您如何将自定义字体添加到此类上下文对话框

谢谢

2 个答案:

答案 0 :(得分:0)

试试这个

Typeface type = Typeface.createFromAsset(getAssets(), "name.ttc");
dismis_dialog.setTypeface(type);
sharedialog.setTypeface(type);

答案 1 :(得分:0)

查看此链接以创建自定义对话框

http://www.mkyong.com/android/android-custom-dialog-example/

您也可以像这样设置自定义字体

Typeface type = Typeface.createFromAsset(getAssets()/fonts, "myfonts.ttc");
youTextView.setTypeface(type);

将您的字体放入资产目录

下的字体文件夹中