我正在尝试将textView添加到content_main布局,而setContentView位于activity_main。我在Android Studio中创建新项目时正在使用导航抽屉模板。 Activity_main包含app_bar_main,其中包含content_main。
Content_main.xml
<?xml version="1.0" encoding="utf-8"?>
<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:id="@+id/content_main"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:orientation="vertical"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:context="org.test.testy.test"
tools:showIn="@layout/app_bar_main"
android:weightSum="1">
</LinearLayout>
我尝试使用的代码是:
LayoutInflater inflater;
inflater = (LayoutInflater) this.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View view = (View) inflater.inflate(R.layout.content_main, null);
LinearLayout layout = (LinearLayout) view.findViewById(R.id.content_main);
//Card view create
CardView cv = new CardView(layout.getContext());
cv.setLayoutParams(new LinearLayout.LayoutParams(LinearLayout.LayoutParams.MATCH_PARENT, LinearLayout.LayoutParams.MATCH_PARENT));
cv.setVisibility(View.VISIBLE);
TextView tv = new TextView(layout.getContext());
tv.setLayoutParams(new LinearLayout.LayoutParams(LinearLayout.LayoutParams.MATCH_PARENT, LinearLayout.LayoutParams.MATCH_PARENT));
tv.setText("Test");
tv.setVisibility(View.VISIBLE);
cv.addView(tv);
layout.addView(cv);
以下所有内容//卡片视图创建在空白应用程序中进行了测试,效果非常好。我还尝试在带有id的content_main的xml中放入TextView并尝试读取文本,该文本也返回了正确的文本。如果我能够访问布局并且添加到视图的代码很好,那么为什么它不起作用?
答案 0 :(得分:0)
我做错了两件事:
我必须使用正确的名称来识别每个 $("#menu li").click(function () {
$("#menu li").not(this).removeClass("active1");
$(this).addClass("active1");
});
.active1{
color: red;
}
和
我必须通过每个包含因为我有两个:
<include>