我的口号是我的习惯。 海关名称栏中载有文字学和图像学。 该表有多个表格。
我想做的是获取表格中的图像观察资源。
我正在从主要Tab活动(延伸到Tabac)的习俗所有权交易中获取书面意见,并且正在做罚款。 下面是主要活动罚款的法典:
requestWindowFeature(Window.FEATURE_CUSTOM_TITLE);
setContentView(R.layout.myactivity);
getWindow().setFeatureInt(Window.FEATURE_CUSTOM_TITLE, R.layout.mycustomtitle);
TextView tv = (TextView) findViewById(R.id.viewTitleId);
现在我想在我的表格中查阅《图像评论》(在表Host中添加)。 如果我把以下编码列入表格:
requestWindowFeature(Window.FEATURE_CUSTOM_TITLE);
它有以下错误:
You cannot combine custom titles with other title features
如果在表格中直接规定如下:
getWindow().setFeatureInt(Window.FEATURE_CUSTOM_TITLE, R.layout.mycustomtitle);
ImageView image = (ImageView) findViewById(R.id.imageTitleId);
形象依然无效。
mycustomtitle.xml has following two elements:
<TextView
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="0.80"
android:id="@+id/viewTitleId"
android:textColor="@color/titleBarTextColor"
android:gravity="center_vertical"
android:text="@string/viewText"
android:textSize="18px"
android:paddingLeft="45px"
/>
<ImageView
android:layout_height="wrap_content"
android:layout_width="0dp"
android:layout_weight="0.20"
android:src="@drawable/btn_save"
android:id="@+id/imageTitleId"
>
</ImageView>
请给我某种想法,我如何能够在表格中查阅习惯名称的图像。