我正在使用broadcastreceiver来显示SMS中的值,我使用WindowManager来显示它。但我得到一个运行时异常,说它已经有父。
WindowManager windowManager = (WindowManager) getSystemService(WINDOW_SERVICE);
LayoutInflater inflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
LinearLayout linearLayout = (LinearLayout)inflater.inflate(R.layout.activity_check_sms,null);
TextView otpnum = (TextView)linearLayout.findViewById(R.id.optnum);
otpnum.setText(m.group(0));
otpnum.setBackgroundColor(Color.BLACK);
WindowManager.LayoutParams params = new WindowManager.LayoutParams(WindowManager.LayoutParams.MATCH_PARENT,
WindowManager.LayoutParams.MATCH_PARENT,
WindowManager.LayoutParams.TYPE_PHONE,
WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE,
PixelFormat.TRANSLUCENT);
windowManager.addView(otpnum,params);
我的XML文件位于下方。
<LinearLayout
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:paddingBottom="@dimen/activity_vertical_margin"
tools:context="com.example.snatarajan.otpreader.CheckSMS"
xmlns:android="http://schemas.android.com/apk/res/android">
<TextView android:text="@string/hello_world" android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/optnum"/>
</LinearLayout>
此代码有什么问题?
答案 0 :(得分:2)
<?php
class Home extends CI_Controller {
function index(){
echo base_url();
}
}
已经有一个otpnum
的父级。
所以你可能想要添加整个布局:
linearLayout
或创建一个单独的xml,它只包含你的TextView并添加它。