我对Android编程很陌生,我对不同的布局仍然有点困惑。我希望有一个Heading" Spieler:"(播放器)和滚动视图,您可以在其中输入播放器。位于最后一个字段下方的加号按钮下方(使用java代码,您可以在单击加号按钮时添加更多播放器字段)。
这是它的样子: Preview
但加号按钮应位于" Spieler 2"下方的右侧。字段。
这是我的xml代码:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<TextView
android:id="@+id/Spieler"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Spieler: "
android:textSize="14pt"
android:layout_marginBottom="30dp"/>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:fillViewport="true">
<LinearLayout
android:id="@+id/mlayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<EditText
android:id="@+id/eingabe1"
android:layout_width="550px"
android:layout_marginStart="40px"
android:layout_height="wrap_content"
android:hint="@string/Spieler1"
android:inputType="textCapWords"
android:singleLine="true" />
<EditText
android:id="@+id/eingabe2"
android:layout_width="550px"
android:layout_marginStart="40px"
android:layout_height="wrap_content"
android:hint="@string/Spieler2"
android:inputType="textCapWords"
android:singleLine="true" />
</LinearLayout>
</ScrollView>
</LinearLayout>
<ImageButton
android:id="@+id/plus"
android:layout_width="30dp"
android:layout_height="30dp"
android:layout_gravity="right"
android:layout_marginRight="20dp"
android:background="@drawable/button_plus"/>
</RelativeLayout>
我在这里发现了一个非常相似的问题: How can I fix a button at the bottom in the scrollview android? 我改变了我的代码,但我不能让它工作:(
感谢您的帮助!
答案 0 :(得分:0)
试试这个:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/myLinear"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
>
<TextView
android:id="@+id/Spieler"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Spieler: "
android:textSize="14pt"
android:layout_marginBottom="30dp"/>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:fillViewport="true">
<LinearLayout
android:id="@+id/mlayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<EditText
android:id="@+id/eingabe1"
android:layout_width="550px"
android:layout_marginStart="40px"
android:layout_height="wrap_content"
android:hint="@string/Spieler1"
android:inputType="textCapWords"
android:singleLine="true" />
<EditText
android:id="@+id/eingabe2"
android:layout_width="550px"
android:layout_marginStart="40px"
android:layout_height="wrap_content"
android:hint="@string/Spieler2"
android:inputType="textCapWords"
android:singleLine="true" />
</LinearLayout>
</ScrollView>
</LinearLayout>
<ImageButton
android:id="@+id/plus"
android:layout_width="30dp"
android:layout_height="30dp"
android:layout_gravity="right"
android:layout_marginRight="20dp"
android:layout_below="@id/myLinear"
android:background="@drawable/button_plus"/>
</RelativeLayout>
这可以解决您的问题。 :)