mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-02-02 11:59:23 +00:00
34 lines
No EOL
1.2 KiB
XML
34 lines
No EOL
1.2 KiB
XML
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
tools:context=".MainActivity" >
|
|
|
|
<Button
|
|
android:id="@+id/button1"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentBottom="true"
|
|
android:layout_centerHorizontal="true"
|
|
android:layout_marginBottom="18dp"
|
|
android:text="@string/start"
|
|
android:onClick="onBtnClicked" />
|
|
|
|
<ScrollView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignParentLeft="true"
|
|
android:layout_alignParentRight="true"
|
|
android:layout_alignParentTop="true"
|
|
android:scrollbars="vertical"
|
|
android:visibility="visible"
|
|
android:padding="10dp"
|
|
android:layout_above="@+id/button1">
|
|
<TextView
|
|
android:id="@+id/textView1"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="" />
|
|
</ScrollView>
|
|
</RelativeLayout> |