All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.paf.rn.view.KeyView Maven / Gradle / Ivy

There is a newer version: 0.52.u
Show newest version
/*
 * 文件名: KeyView.java
 * 版    权:  Copyright PingAn Technology All Rights Reserved.
 * 描    述: [该类的简要描述]
 * 创建人: ex-xujiao001
 * 创建时间: 2012-3-9
 * 
 * 修改人:
 * 修改时间:
 * 修改内容:[修改内容]
 */
package com.paf.rn.view;

import android.view.View;
import android.view.ViewGroup;
import android.widget.PopupWindow;
import android.widget.TextView;

import com.facebook.react.R;

/**
 * [一句话功能简述]
* [功能详细描述] * * @author ex-xujiao001 * @version [Android PABank C01, 2012-3-9] */ public class KeyView extends PopupWindow { private TextView textView; public TextView getTextView() { return textView; } public void setTextView(TextView textView) { this.textView = textView; } public KeyView(View contentView, int width, int height) { super(contentView, width, height); init(); } private void init() { ViewGroup group = (ViewGroup) getContentView(); textView = (TextView) group.findViewById(R.id.key_text); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy