我在我的应用程序中使用了wuapnjie / StickerView library,当我在onCreate方法中调用该方法时,StickerView类中的一个函数getCurrentSticker返回了null对象引用,但是当从任何onClick方法。您的任何专业知识都将非常有用。感谢。
当我尝试在runOnUiThread中的单独线程中运行代码时,它有时会工作,有时则不然。为什么某些代码会在某个时间而不是其他时间起作用。我很迷茫。下面是在onClick方法中工作的代码片段,而不是onCreate方法。
当我在onCreate的下面代码中调用addStickerNow时,它返回null值。在onClick方法中,它返回实际值。
public class MainActiviy extends AppCompatActivity
{
private StickerView stickerView;
private Button button;
LinearLayout layout;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
layout = findViewById(R.id.lnr_draw);
stickerView = (StickerView) findViewById(R.id.sticker_view);
button = (Button) findViewById(R.id.button3);
addStickerNow(); //It's not working.
}
public void onButtonClicked(View view)
{
addStickerNow(); //It's working.
}
public void addStickerNow()
{
stickerView.addSticker(
new TextSticker(getApplicationContext())
.setText("TEXT")
.setMaxTextSize(70)
.setTextAlign(Layout.Alignment.ALIGN_CENTER)
.setMinTextSize(100)
, Sticker.Position.TOP);
int test = 1; //1st breakpoint
Sticker sticker = stickerView.getCurrentSticker(); // 2nd breakpoint
int test2 = 1; //3rd breakpoint
}
}
我尝试按照Mr.Hyde的建议调试应用程序,并在从onCreate和onClick调用addStickerNow时发现以下差异。
*1st breakpoint, when called from onCreate
this = {MainActivity@4424}
stickerView = {StickerView@4427} "com.xiaopo.flying.sticker.StickerView{7b55d6d V.E...... ......I. 0,0-0,0 #7f070071 app:id/sticker_view}"
1st breakpoint, when called from onClick
this = {MainActivity@4424}
stickerView = {StickerView@4427} "com.xiaopo.flying.sticker.StickerView{7b55d6d V.E...... ......ID 0,160-720,760 #7f070071 app:id/sticker_view}"*
这里的主要区别是当从onCreate调用时,StickerView的RectF是 0,0-0,0 ,当从onClick调用时, 0,160-720,760 。所以它与布局创建有关。
布局文件如下。
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:id="@+id/parent_layout"
tools:context="e.venkihero.stickerviewtest.MainActivity">
<LinearLayout
android:id="@+id/lnr_draw"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1.0"
android:gravity="center"
android:orientation="vertical">
<com.xiaopo.flying.sticker.StickerView
android:id="@+id/sticker_view"
android:layout_width="fill_parent"
android:layout_height="300dp"
android:layout_gravity="center"
app:showIcons="true">
<ImageView
android:id="@+id/img_bg1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@android:color/white"
android:scaleType="fitXY" />
</com.xiaopo.flying.sticker.StickerView>
</LinearLayout>
<Button
android:id="@+id/button3"
android:layout_width="100dp"
android:layout_height="100dp"
android:onClick="onButtonClicked"
android:clickable="true" />
</LinearLayout>
如果有人能够解释为什么这段代码(位于顶部)在onClick方法中正常工作但在onCreate方法中返回null对象引用会非常有帮助。感谢。
答案 0 :(得分:0)
看起来StickerView依赖于你的整体布局来绘制自己。因为在onCreate中你的布局没有在你的Activity上绘制所以你的StickerView的Rect都是0。
在onCreate
中添加以下代码,等待绘制布局,然后调用addSticker方法。
ViewTreeObserver vto = yourLayout.getViewTreeObserver();
vto.addOnGlobalLayoutListener(new ViewTreeObserver.OnGlobalLayoutListener() {
@Override
public void onGlobalLayout() {
vto.removeOnGlobalLayoutListener(this)
addStickerNow()
}
});