3

我有一个简单LinearLayout的只包含一个自定义视图扩展TextView(我将开始调用“ IdiomView”)和一个ListView. IdiomView与普通的唯一区别TextView是我已经重写了onDraw()迭代减小文本大小直到文本长度小于 3 行的方法。我的问题是,当绘制视图时,用户会看到:

 ______________
|__ACTION_BAR__|
|  IdiomView   |
|______________|
|              |
|   ListView   |
|              |
|              |
|______________|

很快就变成了:

 ______________
|__ACTION_BAR__|
|__IdiomView __|
|              |
|   ListView   |
|              |
|              |
|              |
|______________|

IdiomView即ListView被绘制,然后在整理好它的大小后跳起来。

我想要的是一种等到我IdiomView的完全绘制,然后再绘制 ListView 的方法。这篇文章在完全绘制所有视图后会触发什么事件?解释了如何在绘图完成后通过调用来排列线程View.post(Runnable)。问题是我的重写onDraw()方法调用onDraw()多次以计算较小的文本是否覆盖少于 3 行,所以这个元素可能在我想要ListView出现之前多次“完成绘图”。

我感谢所有的评论和答案。这是我当前的代码:

布局 XML:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/main_view"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_margin="10dp"
    android:background="@color/off_white"
    android:orientation="vertical" >

    <carter.cwords.idioms.IdiomView
        android:id="@+id/idiom"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        android:layout_marginBottom="10dp"
        android:textColor="@color/transparent"
        android:textSize="28sp"
        android:textStyle="italic"
        android:visibility="invisible" />

    <ListView
        android:id="@+id/quote_list"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:choiceMode="none"
        android:footerDividersEnabled="false"
        android:headerDividersEnabled="false"
        android:visibility="invisible" />

</LinearLayout>

活动:

private IdiomView mIdiomTextView;
private ListView mQuoteList;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

    setContentView(R.layout.idiom_of_the_day);
    mIdiomTextView = (IdiomView) findViewById(R.id.idiom);
    mQuoteList = (ListView) findViewById(R.id.quote_list);      

    // Populate page data onResume()
}

@Override
protected void onResume() {
    super.onResume();

    sendRequest(R.string.url_idiom_of_the_day, new AfterRequest(){
        @Override
        public void useResults(Document resultXml) {
            if(resultXml != null){

                Log.i(getClass().getSimpleName(), "useResults()");

                String idiomString = XmlUtilities.getTextValue(resultXml, NetworkHelper.XML_TAG_IDIOM_CONTENT);

                logDebug("idiomString: " + idiomString);
                mIdiomTextView.setText("\"" + idiomString + "\"");
                mQuoteList.setAdapter(new ContentAdapter(mContext, resultXml));
                mIdiomTextView.setVisibility(View.VISIBLE);

                mIdiomTextView.post(new Runnable(){
                    @Override
                    public void run() {
                        mQuoteList.setVisibility(View.VISIBLE);
                    }
                });
            }

        }
    });

}

IdiomView

public class IdiomView extends TextView {

    public IdiomView(Context context) {     
        super(context);
    }

    public IdiomView(Context context, AttributeSet attrs){
        super(context, attrs);
    }

    @Override
    protected void onDraw(Canvas canvas) {
        super.onDraw(canvas);
        Log.i(getClass().getSimpleName(), "onDraw(): " + this.getLineCount());
        if(this.getLineCount() > 2){
            this.setTextSize(TypedValue.COMPLEX_UNIT_PX, this.getTextSize()-1);
        }
        else{
            this.setTextColor(getResources().getColor(R.color.text));
        }
        Log.i(getClass().getSimpleName(), "onDraw(): " + this.getLineCount());

    }


}

非常感谢。

4

2 回答 2

3

我以前从未在 a 上尝试过,但我认为它可以帮助指导您的应用在绘制后View仅与, 一起使用。您也许可以使用侦听器来实现这一点。但是,它将要求您使用代码隐藏方法。ListViewIdiomView

创建一个接口,IdiomView例如

public static interface OnDrawComplete {
    public abstract void onDrawComplete();
}

private OnDrawComplete mListener;

public IdiomView(Context context) {     
    super(context);
    // this forces it to make sure it's actually an activity
    // context so you can get a listener
    if (context instanceof Activity)
        this.mListener = context;
}

现在在你的绘图结束时,调用它

if (this.mListener != null)
    this.mListener.onDrawComplete();

这将调用创建对象的 Activity 并通知它正在绘制。所以在你的活动中,你实现了接口

public void onDrawComplete() {
    // After the draw completes, it calls this callback.
    // setup the rest of your layout now
    mQuoteList = (ListView) findViewById(R.id.quote_list);
    this.populateQuoteList();
}

您也许还可以召集this.mListener.onDrawComplete();其他某种View活动,但我找不到合适的活动。你提到了View.post(runnable),它可能有效,但我也从未使用过那种东西。

最大的潜在问题是我不知道IdiomView将如何接收上下文或哪个上下文。在这种情况下,您需要Activity实现接口的上下文。

如果没有获得正确的上下文,您可能需要手动实例化并将其添加到布局中以使用此方法。

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

    mIdiomTextView = new mIdiomTextView(this);
    // add to the Layout manually.  
}

这里有更多内容

成语视图

public class IdiomView extends TextView {
    public static interface OnDrawComplete {
        public abstract void onDrawComplete();
    }

    private OnDrawComplete mListener;

    public IdiomView(Context context) {     
        this(context, 0);
    }

    public IdiomView(Context context, AttributeSet attrs){
        super(context, attrs);
        if (context instanceof Activity)
            this.mListener = context;
    }

    @Override
    protected void onDraw(Canvas canvas) {
        super.onDraw(canvas);
        // do your drawing code here
        // ...
        // after drawing, call the listener, which tells your
        // Activity to deal with the ListView.
        if (this.mListener != null)
            this.mListener.onDrawComplete();
    }
}

活动

public class MyActivity extends Activity implements IdiomView.OnDrawComplete {
    //...

    private IdiomView mIdiomTextView;
    private ListView mQuoteList;

    public void onDrawComplete() {
        // After the draw completes, it calls this callback.
        // setup the rest of your layout now
        mQuoteList = (ListView) findViewById(R.id.quote_list);
        this.populateQuoteList();
        // now show the ListView
        mQuoteList.setVisibility(View.Visible);
    }

    private void populateQuoteList() {
        // populate your ListView here
    }
}
于 2013-02-20T21:25:29.860 回答
2

重复设置文本大小直到找到合适的字体大小可能效率很低,因为TextView每次都需要重新测量和重新绘制。您可以使用它的TextView.getPaint()方法只测量和设置一次文本,而不是这样做。您可以使用 in 循环测量文本,Paint为其提供不同的字体大小,直到返回的值Paint.measureText()低于小部件当前宽度的两倍。

于 2013-02-22T05:18:57.583 回答