- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
AdMob documentation to integrate it on Android指示创建以下 XML,如果我们想通过 XML 创建 View :
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:ads="http://schemas.android.com/apk/res-auto"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<com.google.android.gms.ads.AdView android:id="@+id/adView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
ads:adUnitId="MY_AD_UNIT_ID"
ads:adSize="BANNER"/>
</LinearLayout>
并将其设置为 Activity 的内容 View :
public class BannerExample extends Activity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
// Look up the AdView as a resource and load a request.
AdView adView = (AdView) this.findViewById(R.id.adView);
AdRequest adRequest = new AdRequest.Builder().build();
adView.loadAd(adRequest);
}
}
但在我的例子中(我使用 cocos2d-x 3)我已经有一个 Activity 的子类,我只需要将该 View 添加到我现有的内容中,而不是像上面的代码那样设置内容 View 。我如何添加 ContentView 以 XML 定义的 View ?
最佳答案
当你打电话的时候。
setContentView(R.layout.main);
在 onCreate 中,它会自动为您扩充 View ,因此您可以开始将您的 View 从 xml 分配给您自己的变量,如下所示:
AdView adView = (AdView) findViewById(R.id.adView);
确保您在顶部定义的 xml 布局与在 setContentView() 中传递的布局相同。在这种情况下,R.layout.main 应该包含一个 ID 为 AdView 类型的 View 。
换句话说,R.layout.main 应该是:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:ads="http://schemas.android.com/apk/res-auto"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<com.google.android.gms.ads.AdView android:id="@+id/adView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
ads:adUnitId="MY_AD_UNIT_ID"
ads:adSize="BANNER"/>
</LinearLayout>
但是,如果您想要的是膨胀并使用主布局并添加 AdView,则您必须自己膨胀 View 并将其添加到主布局中的某个元素。像这样:
RelativeLayout item = (RelativeLayout)findViewById(R.id.item);
View child = getLayoutInflater().inflate(R.layout.child, null);
item.addView(child);
关于java - Android - 在 XML 中定义的 AddContentView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24923485/
我有一个关于 Android Activity 的问题: Activity 具有方法 addContentView(View) 而 ViewGroup 具有(类似?)addView(View) 方法。
我正在努力在当前运行的 Activity 之上添加视频。我已经设法使用以下方法实现了这一点: this.surface = new SurfaceView(getApplicationConte
我正在使用 addContentView() 添加布局。如何在单击按钮时删除此布局? 最佳答案 假设 contentView 是通过 window.addContentView() 添加的 View
我已经使用 addContentView() 成功地将 subview 添加到父 View 。但是当我试图删除 View 时,它会给我一个空指针异常。 //Working Code B
我正在学习一个教程并添加了一个像这样的新 View : super.onCreate(savedInstanceState); setContentView(R.layout.acti
我正在尝试在我的 opengl View 上添加一个由 xml 定义的新 LinearLayout。 我使用纯 java 来实现: public class VortexView extends GL
我想问一些关于 addContentView() 命令的问题。我创建了一个自定义 View ,该 View 由垂直模式下的 LinearLayout(fill parent, wrap content
AdMob documentation to integrate it on Android指示创建以下 XML,如果我们想通过 XML 创建 View : 并将其设置为 Activity
我正在使用 addContentView 将 subview 添加到我的主视图,如下所示: TableLayout.LayoutParams tlp = new TableLayout.Lay
我最近得到了一些淡入淡出的东西,所以我的“加载” View 是一个占据整个屏幕的 ImageView,然后我淡入主视图(在本例中是 GridView)在它的顶部。在 Activity 创建中,我调用:
我是一名优秀的程序员,十分优秀!