xml文件是,
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:id="@+id/profileLayout">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Super Powers"
/>
</LinearLayout>
在活动文件中,我试图添加一个文本字段,其值将动态更改(值将为ON或OFF),并且该文本应与&#34;超级电源&#34;
内联TextView valueTV = new TextView(this);
valueTV.setText("OFF");
valueTV.setId(5);
valueTV.setGravity(Gravity.RIGHT);
valueTV.setLayoutParams(new LayoutParams(LayoutParams.WRAP_CONTENT,LayoutParams.WRAP_CONTENT));
((LinearLayout) linearLayout).addView(valueTV);
任何人都可以告诉我如何将两个textView内联?
答案 0 :(得分:0)
尝试将布局更改为相对布局&#39;,然后使用XML
答案 1 :(得分:0)
您的LinearLayout具有垂直方向。它应该是水平的,以便能够将其子项放在同一行。
答案 2 :(得分:0)
请将您的方向从垂直更改为水平。现在,您的文本视图将水平定向。
答案 3 :(得分:0)
使用此代码设计xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal" >
<TextView
android:id="@+id/textView1"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:gravity="center"
android:text="Super power"
android:textAppearance="?android:attr/textAppearanceLarge" />
<LinearLayout
android:id="@+id/lin1"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:orientation="vertical" >
</LinearLayout>
</LinearLayout>
并在LinearLayout中添加动态文本视图,其id为“lin1” 希望它对你有用
答案 4 :(得分:0)
尝试这种方式:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal" >
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Super Powers : "
/>
<TextView
android:id="@+id/txt_on_off"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="OFF" />
</LinearLayout>
</LinearLayout>
并在你的java文件中引用ON OFF textview,如下所示:
TextView txtOnOff;
txtOnOff=(TextView)findViewById(R.id.txt_on_off);
txtOnOff.setText("ON");
那就是