我的应用程序中并排有两个LinearLayouts。在第一个LinearLayout(左侧)中,我有一些名称列表。我想要实现它们之间的连接或关系,以便当我单击名称列表项之一时,文本消息或某些设计将显示在其中。第二线性布局(右侧)。 我已经用Toast实现了OnClickListener,但是我不知道在第二线性布局中显示文本消息或某些设计。 预先感谢您的帮助!
<LinearLayout
android:layout_width="match_parent"
android:layout_height="50dp"
android:id="@+id/relLayoutMiddle" android:orientation="horizontal"
android:layout_below="@+id/relLayoutTopBar"
android:layout_above="@+id/relLayoutBottomBar">
<!-- Items List-->
<LinearLayout
android:orientation="vertical"
android:layout_width="80dp"
android:layout_height="fill_parent"
android:layout_marginRight="5dp"
android:background="@drawable/border_design">
<ListView
android:id="@+id/item_List" android:scrollbars="none"
android:layout_width="match_parent"
android:focusable="true"
android:layout_height="fill_parent">
</ListView>
</LinearLayout>
<!-- Display Items-->
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="1" android:layout_marginLeft="5dp"
android:background="@drawable/border_design">
<TextView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:text="Items will be Display here"/>
</LinearLayout>
</LinearLayout>
答案 0 :(得分:0)
您应该为要在Java代码中使用的每个视图都有一个ID。那么您可以在活动中使用findViewById方法找到该视图。 因此,对于您的视图,您应该考虑第二个textView的ID,例如tvDisplay,然后在onClickListener中通过以下代码将文本设置为textView:
((TextView)findViewById(R.id.tvDisplay)).setText("hello")
答案 1 :(得分:0)
假设,您已经实现了用于检查是否单击了列表项的代码,只需要将ID分配给目标文本视图。例如:
<TextView
android:id="@+id/targetID"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:text="Items will be Display here"/>
然后,您需要使用代码中的ID查找TextView。例如:
TextView tv = (TextView)View.findViewById(R.id.targetID);
然后使用以下命令更改电视内容:
tv.setText("What you want to write here");
注意:该代码并非用于复制粘贴。这是您可以采取的建议或方法。
答案 2 :(得分:0)
listview.setOnItemClickListener(new AdapterView.OnItemClickListener() {
@Override
public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
textView.setText(listview.getItemAtPosition(position).toString());
}
使用此代码并实现listview点击监听器
答案 3 :(得分:0)
您可以使用这种方式来实现它。
在XML布局中:
<LinearLayout
android:layout_width="match_parent"
android:layout_height="50dp"
android:id="@+id/relLayoutMiddle"
android:orientation="horizontal">
<!-- Items List-->
<LinearLayout
android:orientation="vertical"
android:layout_width="80dp"
android:layout_height="fill_parent"
android:layout_marginRight="5dp">
<ListView
android:id="@+id/item_List"
android:scrollbars="none"
android:layout_width="match_parent"
android:focusable="true"
android:layout_height="fill_parent">
</ListView>
</LinearLayout>
<!-- Display Items-->
<LinearLayout
android:id="@+id/ll_second"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="1"
android:layout_marginLeft="5dp">
<TextView
android:id="@+id/tv_message"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:text="Items will be Display here"/>
</LinearLayout>
</LinearLayout>
在代码中:
final String[] names = {"one", "two", "three"};
llSecond = findViewById(R.id.ll_second);
tvMessage = findViewById(R.id.tv_message);
ListView lvItem = findViewById(R.id.item_List);
lvItem.setAdapter(new ArrayAdapter<String>(this, android.R.layout.simple_list_item_activated_1, android.R.id.text1, names));
lvItem.setOnItemClickListener(new AdapterView.OnItemClickListener() {
@Override
public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
// display a text message that selected in ListView into TextView
tvMessage.setText(names[position]);
// Or call user defined function that make to second LinearLayout dynamically with programmatical.
// makeLayout();
}
});