我创建了header.xml,因此包含在Main.xml和Menu.xml中。 在header.xml中我有一个按钮。
Header.xml
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="wrap_content"
>
<ImageView
android:layout_width="150dp"
android:layout_height="100dp"
android:src="@drawable/logo"
android:id="@+id/header"
android:paddingTop="10px"
/>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:id="@+id/insideButtons">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Main Menu"
android:gravity="right"
android:layout_marginRight="50px"
android:id="@+id/mainMenu"
android:textColor="#604811"
android:textSize="20dp"
/>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="About University"
android:gravity="right"
android:layout_marginRight="50px"
android:id="@+id/about"
android:textColor="#604811"
/>
</LinearLayout>
我想知道我如何从主要活动和菜单活动中访问此按钮。我正在使用以下代码,但它不起作用。
TextView btn;
public class Header extends AppCompatActivity {
TextView home;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
getSupportActionBar().hide();
setContentView(R.layout.header);
home = (TextView) findViewById(R.id.mainMenu);
home.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Intent i = new Intent(getApplicationContext(),Menu.class);
startActivity(i);
}
});
}}
答案 0 :(得分:1)
解决方案1
将此添加到您的Main.xml
<include
layout="@layout/header.xml"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
使用Main.java中的以下代码以相同的方式访问它,看看它是否有效。
TextView home;
home= (TextView) findViewById(R.id.mainMenu);
home.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Intent i = new Intent(getApplicationContext(),Menu.class);
startActivity(i);
}
});
我上面做的允许您通过直接引用其ID来访问Main.java中header.xml的所有元素。 您所要做的就是正确包含xml,然后您可以通过各自的ID直接访问它的组件。
解决方案2
将此选项用于要设置onClick for
的按钮或textview<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:onClick="changeActivity"
android:text="button1" />
然后创建一个相应的函数,用于单击它时发生的情况。
public void changeActivity(View view)
{
Intent intent = new Intent(FromActivity.this, ToActivity.class);
startActivity(intent);
}
答案 1 :(得分:0)
您需要其父级的ID才能获得:
假设R.id.parent_view
是R.id.nested_button
的父级:
View parent= findViewById(R.id.parent_view);
Button nestedButton= (Button) parent.findViewById(R.id.nested_button);
nestedButton.setText("Whatever");
答案 2 :(得分:0)
使用findViewById查找包含的布局,然后使用findViewById在该视图上查找按钮。
查看includeView = findViewById(&#34;包含布局的ID&#34;); 按钮btn = includeView.findViewById(R.id.mainBtn);