提问人:gurkan stack 提问时间:8/8/2020 最后编辑:Eugen Pechanecgurkan stack 更新时间:8/17/2020 访问量:1105
尝试在空对象引用上调用虚拟方法“void android.view.View.measure(int, int)”
Attempt to invoke virtual method 'void android.view.View.measure(int, int)' on a null object reference
问:
我正在尝试使用
https://github.com/nisrulz/screenshott
库截屏。
但它给出了错误。
尝试调用虚拟方法'void android.view.View.measure(int, int)' 在 null 对象引用上
相对布局:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:ads="http://schemas.android.com/apk/res-auto"
tools:context="x.y.z"
android:orientation="vertical"
android:id="@+id/layoutview">
<!--
<com.google.android.gms.ads.AdView
android:id="@+id/adViewChat2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_alignParentTop="true"
ads:adSize="SMART_BANNER"
ads:adUnitId="x">
</com.google.android.gms.ads.AdView>
-->
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="English"
android:background="@drawable/shape"
android:textAppearance="?android:attr/textAppearanceMedium"
android:layout_marginLeft="@dimen/_15sdp"
android:layout_marginRight="@dimen/_15sdp"
android:textAlignment="center"
android:id="@+id/textviewtop"
android:layout_marginTop="@dimen/_5sdp"
android:textColor="#ffffff"
android:textStyle="bold"
/>
<ScrollView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/scrollView"
android:orientation="vertical"
android:layout_above="@+id/linear"
android:layout_marginBottom="@dimen/_5sdp"
android:layout_below="@+id/textviewtop"
android:layout_marginTop="@dimen/_5sdp"
>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingLeft="@dimen/_15sdp"
android:background="@drawable/shape"
android:layout_marginLeft="@dimen/_15sdp"
android:layout_marginRight="@dimen/_15sdp"
>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceMedium"
android:text="@string/welcome"
android:id="@+id/textView"
android:textColor="#ffffff"/>
</RelativeLayout>
</ScrollView>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:layout_alignParentBottom="true"
android:layout_marginLeft="@dimen/_15sdp"
android:layout_marginRight="@dimen/_15sdp"
android:background="@drawable/shape"
android:id="@+id/linear">
<EditText
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/editText2"
android:textColor="#ffffff"
android:layout_weight="0.9"
android:hint="Write a message"
android:textColorHint="#A4A4A4"/>
<Button
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:text="send"
android:id="@+id/btn_send"
android:layout_weight="0.1"
android:textColor="#ffffff"
/>
</LinearLayout>
</RelativeLayout>
在方法中:OnCreate
setContentView(R.layout.activity_main);
View myView =(RelativeLayout) findViewById(R.id.layoutview);
Bitmap bitmap_view =
ScreenShott.getInstance().takeScreenShotOfView(myView); // problematic line, this line gives the error.
我怎样才能解决我的问题?如何获取相对布局视图?
答:
-1赞
paule mandengue
8/8/2020
#1
请这样写,希望XML布局文件的名称是activity_main.xmlRelativeLayout myView = findViewById(R.id.layoutview);
评论
0赞
Eugen Pechanec
8/18/2020
结果在这两种情况下是相同的,因为在这两种情况下函数调用都是相同的: .是的,投射到然后又投射回来是丑陋的,但除此之外什么也做不了。这应该是一个促进代码可读性的注释。findViewById(R.id.layoutview)
RelativeLayout
View
0赞
Emerson Gonzalez
8/10/2020
#2
你不能在.在此方法中,您的布局已测量并膨胀,但尚未创建 UI。onCreate
onCreate
调用代码的时间必须晚于 。例如,在按钮事件中:onCreate
Button capture_screenshot = findViewById(R.id.button_takeshoot);
capture_screenshot.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
View myView =(RelativeLayout) findViewById(R.id.layoutview);
Bitmap bitmap_view = ScreenShott.getInstance().takeScreenShotOfView(myView);
}
});
评论
0赞
Eugen Pechanec
8/17/2020
“布局测量”、“布局膨胀”、“未创建 UI”是什么意思?UI 由布局定义,在创建布局时创建。视图被夸大了。但它不是立即测量的。顺序很重要。setContentView
0赞
AmrDeveloper
8/12/2020
#3
您需要在视图绘制后截取屏幕截图 因此,在视图绘制完成时,您需要一个侦听器 可以使用 ViewTreeObserver.OnGlobalLayoutListener
ViewTreeObserver observer = view.getViewTreeObserver();
observer .addOnGlobalLayoutListener (new ViewTreeObserver.OnGlobalLayoutListener() {
@Override
public void onGlobalLayout() {
Bitmap bitmap_view = ScreenShott.getInstance().takeScreenShotOfView(view);
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN) {
view.getViewTreeObserver().removeOnGlobalLayoutListener(this);
} else {
view.getViewTreeObserver() .removeGlobalOnLayoutListener(this);
}
}
});
评论
0赞
AmrDeveloper
8/14/2020
符号“view”是我视图的名称,但在代码中输入视图名称,例如“myView”
0赞
chand mohd
8/16/2020
#4
这不会给你 NPE,但 SS:
科特林:
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
Log.d(TAG, "onCreate: this method invoke")
setContentView(R.layout.activity_main_ss)
val rootView = window.decorView.rootView
Log.d(TAG, "onCreate: rootView$rootView")
val bitmap = ScreenShott.getInstance().takeScreenShotOfJustView(rootView)
}
爪哇岛:
@Override
protected void onCreate(@Nullable Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main_ss);
View rootView = findViewById(android.R.id.content).getRootView();
Bitmap bitmap = ScreenShott.getInstance().takeScreenShotOfJustView(rootView);
}
PS:我使用了与上面提到的相同的库,但没有获得NPE
评论
0赞
Eugen Pechanec
8/17/2020
您正在使用与所讨论的有什么区别?takeScreenShotOfJustView
takeScreenShotOfView
0赞
M.AQIB
8/17/2020
#5
您可以尝试而不是使用So。.takeScreenShotOfJustView(view)
.takeScreenShotOfView(view)
Bitmap bitmap_view =
ScreenShott.getInstance().takeScreenShotOfJustView(myView);
这将不受限制地截取屏幕截图...
评论
myView