Reputation: 27
I am new to android development and achartengine.
I've managed to get the the XML almost represent what I need but I'm having a little trouble with adjusting the sizes.
My understanding of XML is pretty bad, but what I've got so far:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<LinearLayout
android:id="@+id/chart"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" />
<TextView
android:gravity="center"
android:id="@+id/textView1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Test Text"
android:textColor="#000000" />
</LinearLayout>
Any help would be really appreciated.
Thank you.
Turns out I didn't have enough reputation to post images, so I have included a link to a visual description here. Sorry about that.
Upvotes: 1
Views: 330
Reputation: 14612
It should look like this:
<?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:background="@android:color/white"
android:weightSum="100" >
<LinearLayout
android:id="@+id/chart"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="80"
android:orientation="horizontal" />
<TextView
android:id="@+id/textView1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="20"
android:gravity="center"
android:text="hello world"
android:textColor="@android:color/black" />
</LinearLayout>
Upvotes: 2