当前位置: 首页>>代码示例>>Java>>正文


Java AppCompatActivity.getLayoutInflater方法代码示例

本文整理汇总了Java中android.support.v7.app.AppCompatActivity.getLayoutInflater方法的典型用法代码示例。如果您正苦于以下问题:Java AppCompatActivity.getLayoutInflater方法的具体用法?Java AppCompatActivity.getLayoutInflater怎么用?Java AppCompatActivity.getLayoutInflater使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在android.support.v7.app.AppCompatActivity的用法示例。


在下文中一共展示了AppCompatActivity.getLayoutInflater方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: showWhiteSnackBar

import android.support.v7.app.AppCompatActivity; //导入方法依赖的package包/类
public static void showWhiteSnackBar(int signed_in_message, AppCompatActivity compatActivity) {
    LayoutInflater inflater = compatActivity.getLayoutInflater();
    View layout = inflater.inflate(R.layout.custom_toast_view,
            (ViewGroup) compatActivity.findViewById(R.id.custom_toast_container));
    TextView text = (TextView) layout.findViewById(R.id.text);
    text.setText(signed_in_message);
    Toast toast = new Toast(compatActivity);
    toast.setDuration(Toast.LENGTH_SHORT);
    toast.setView(layout);
    toast.show();
}
 
开发者ID:vixir,项目名称:Perfect-Day,代码行数:12,代码来源:Utils.java

示例2: promptRollNo

import android.support.v7.app.AppCompatActivity; //导入方法依赖的package包/类
public static AlertDialog promptRollNo(final AppCompatActivity context){
    final SharedPref sharedPref=new SharedPref(context);
    AlertDialog.Builder alertDialogBuilder=new AlertDialog.Builder(context);
    LayoutInflater inflater=context.getLayoutInflater();
    LinearLayout l= (LinearLayout) inflater.inflate(R.layout.dialog_register_rollno,null);
    alertDialogBuilder.setView(l);
    final CheckBox checkBox= (CheckBox) l.findViewById(R.id.checkbox_register);
    final EditText rollNoEditText= (EditText) l.findViewById(R.id.rollno_register);
    final EditText phoneNoEditText= (EditText) l.findViewById(R.id.phone_register);
    checkBox.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
        @Override
        public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
            if(isChecked){
                rollNoEditText.setVisibility(View.VISIBLE);
                phoneNoEditText.setVisibility(View.VISIBLE);
            }
            else {
                rollNoEditText.setVisibility(View.GONE);
                phoneNoEditText.setVisibility(View.GONE);
            }
        }
    });

    alertDialogBuilder.setPositiveButton("Submit", new DialogInterface.OnClickListener() {
        @Override
        public void onClick(DialogInterface dialog, int which) {
            Intent i=new Intent(context, UploadService.class);
            i.putExtra(REGISTER_ROLL_NO,true);
            i.putExtra(ROLL_NO,rollNoEditText.getText().toString());
            if(checkBox.isChecked()){
                sharedPref.setNitianStatus(true);
                sharedPref.setUserRollno(rollNoEditText.getText().toString());
                context.startService(i);
            }
            else{
                sharedPref.setNitianStatus(false);
                sharedPref.setUserRollno("");
            }


        }
    });
    return alertDialogBuilder.create();
}
 
开发者ID:appteam-nith,项目名称:Hillffair17,代码行数:45,代码来源:Utils.java

示例3: promptRollNo

import android.support.v7.app.AppCompatActivity; //导入方法依赖的package包/类
public static AlertDialog promptRollNo(final AppCompatActivity context){
    final SharedPref sharedPref=new SharedPref(context);
    AlertDialog.Builder alertDialogBuilder=new AlertDialog.Builder(context);
    LayoutInflater inflater=context.getLayoutInflater();
    LinearLayout l= (LinearLayout) inflater.inflate(R.layout.dialog_register_rollno,null);
    alertDialogBuilder.setView(l);
    final CheckBox checkBox= (CheckBox) l.findViewById(R.id.checkbox_register);
    final EditText rollNoEditText= (EditText) l.findViewById(R.id.rollno_register);
    final EditText phoneNoEditText= (EditText) l.findViewById(R.id.phone_register);
    checkBox.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
        @Override
        public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
            if(isChecked){
                rollNoEditText.setVisibility(View.VISIBLE);
                phoneNoEditText.setVisibility(View.VISIBLE);
            }
            else {
                rollNoEditText.setVisibility(View.GONE);
                phoneNoEditText.setVisibility(View.GONE);
            }
        }
    });

    alertDialogBuilder.setPositiveButton("Submit", new DialogInterface.OnClickListener() {
        @Override
        public void onClick(DialogInterface dialog, int which) {
            Intent i=new Intent(context, UploadService.class);
            i.putExtra(REGISTER_ROLL_NO,true);
            i.putExtra(ROLL_NO,rollNoEditText.getText().toString());
            if(checkBox.isChecked()){
                sharedPref.setNitianStatus(true);
                sharedPref.setUserRollno(rollNoEditText.getText().toString());
                context.startService(i);
            }
            else{
                sharedPref.setNitianStatus(false);
                sharedPref.setUserRollno("");
            }


        }
    });
     return alertDialogBuilder.create();
}
 
开发者ID:appteam-nith,项目名称:Nimbus,代码行数:45,代码来源:Util.java


注:本文中的android.support.v7.app.AppCompatActivity.getLayoutInflater方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。