當前位置: 首頁>>代碼示例>>Java>>正文


Java TextView.addOnLayoutChangeListener方法代碼示例

本文整理匯總了Java中android.widget.TextView.addOnLayoutChangeListener方法的典型用法代碼示例。如果您正苦於以下問題:Java TextView.addOnLayoutChangeListener方法的具體用法?Java TextView.addOnLayoutChangeListener怎麽用?Java TextView.addOnLayoutChangeListener使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在android.widget.TextView的用法示例。


在下文中一共展示了TextView.addOnLayoutChangeListener方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: ViewHolder

import android.widget.TextView; //導入方法依賴的package包/類
public ViewHolder(final View view) {
    super(view);
    mTitle = (TextView) view.findViewById(android.support.v17.leanback.R.id.lb_details_description_title);
    mDate = (TextView) view.findViewById(R.id.date);
    mRating = (TextView) view.findViewById(R.id.rating);
    mBody = (TextView) view.findViewById(android.support.v17.leanback.R.id.lb_details_description_body);
    mTraktWatched = (ImageView) view.findViewById(R.id.trakt_watched);

    mTitle.addOnLayoutChangeListener(new View.OnLayoutChangeListener() {
        @Override
        public void onLayoutChange(View v, int left, int top, int right, int bottom,
                                   int oldLeft, int oldTop, int oldRight, int oldBottom) {
            addPreDrawListener();
        }
    });
}
 
開發者ID:archos-sa,項目名稱:aos-Video,代碼行數:17,代碼來源:TvshowDetailsDescriptionPresenter.java

示例2: WebappUrlBar

import android.widget.TextView; //導入方法依賴的package包/類
/**
 * Creates a WebappUrlBar.
 * @param context Context to grab resources from.
 */
public WebappUrlBar(Context context, AttributeSet attrSet) {
    super(context, attrSet);
    mIconResourceWidths = new SparseIntArray();

    mUrlBar = new TextView(context);
    mUrlBar.setSingleLine(true);
    mUrlBar.setGravity(Gravity.CENTER_VERTICAL);
    mUrlBar.setMovementMethod(ScrollingMovementMethod.getInstance());
    mUrlBar.setHorizontalFadingEdgeEnabled(true);
    mSeparator = new View(context);

    addView(mUrlBar,
            new FrameLayout.LayoutParams(
                    ViewGroup.LayoutParams.WRAP_CONTENT, ViewGroup.LayoutParams.WRAP_CONTENT,
                    Gravity.CENTER));
    addView(mSeparator,
            new FrameLayout.LayoutParams(
                    ViewGroup.LayoutParams.MATCH_PARENT, 1, Gravity.BOTTOM));

    // Set the colors.
    mSeparator.setBackgroundColor(ApiCompatibilityUtils.getColor(context.getResources(),
            R.color.webapp_url_bar_separator));
    setBackgroundColor(ApiCompatibilityUtils.getColor(context.getResources(),
            R.color.webapp_url_bar_bg));

    // Listen for changes in the URL bar's size.
    mUrlBar.addOnLayoutChangeListener(this);
}
 
開發者ID:rkshuai,項目名稱:chromium-for-android-56-debug-video,代碼行數:33,代碼來源:WebappUrlBar.java

示例3: ViewHolder

import android.widget.TextView; //導入方法依賴的package包/類
public ViewHolder(final View view) {
    super(view);
    mTitle = (TextView) view.findViewById(android.support.v17.leanback.R.id.lb_details_description_title);
    mEpisodeGroup = view.findViewById(R.id.episode_group);
    mEpisodeSXEX = (TextView) view.findViewById(R.id.episode_sxex);
    mEpisodeTitle = (TextView) view.findViewById(R.id.episode_title);
    mDate = (TextView) view.findViewById(R.id.date);
    mDuration = (TextView) view.findViewById(R.id.duration);
    mRating = (TextView) view.findViewById(R.id.rating);
    mBody = (TextView) view.findViewById(android.support.v17.leanback.R.id.lb_details_description_body);
    mTraktWatched = (ImageView) view.findViewById(R.id.trakt_watched);
    mResolutionBadge = (ImageView) view.findViewById(R.id.badge_resolution);
    mAudioBadge = (ImageView) view.findViewById(R.id.badge_audio);
    m3dBadge = (ImageView) view.findViewById(R.id.badge_3d);

    // Disallow Video Badges Animation for now, will be allowed at end of VideoDetails enter transition
    // to prevent a huge animation glitch when VideoDetails is opened
    mBadgesLayout = ((LinearLayout)view.findViewById(R.id.badges));
    mBadgesLayoutTransition = mBadgesLayout.getLayoutTransition();
    mBadgesLayout.setLayoutTransition(null);

    mTitle.addOnLayoutChangeListener(new View.OnLayoutChangeListener() {
        @Override
        public void onLayoutChange(View v, int left, int top, int right, int bottom,
                                   int oldLeft, int oldTop, int oldRight, int oldBottom) {
            addPreDrawListener();
        }
    });
}
 
開發者ID:archos-sa,項目名稱:aos-Video,代碼行數:30,代碼來源:VideoDetailsDescriptionPresenter.java


注:本文中的android.widget.TextView.addOnLayoutChangeListener方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。