C 
		
				
				
			
		Chris92
Fortgeschrittenes Mitglied
- 0
Hey ich hab ein Problem
Und zwar krieg ich die Buttons irgendwie nicht nach unten kann mir da jemend helfen bitte?
 kann mir da jemend helfen bitte?
	
	
	
		
Das ist der xml code
MFG
chris92
				
			Und zwar krieg ich die Buttons irgendwie nicht nach unten
 kann mir da jemend helfen bitte?
 kann mir da jemend helfen bitte?
		Code:
	
	<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent" >
<LinearLayout
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="horizontal" >
    
    
   
        <ImageView
            android:id="@+id/imageView1"
            android:layout_width="640dp"
            android:layout_height="650dp" />
        <EditText
            android:id="@+id/edttext"
            android:layout_width="640dp"
            android:layout_height="650dp"
            android:autoText="true"
            android:ems="10"
            android:focusable="false"
            android:gravity="center"
            android:singleLine="false" >
        
        </EditText>
      
    </LinearLayout>  
     <LinearLayout
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:background="@android:drawable/bottom_bar"
            android:gravity="center_vertical" >
            <Button
                android:id="@+id/btnCorrectorizer"
                android:layout_width="256dp"
                android:layout_height="wrap_content"
                android:text="Correctorizer" />
 
            <Button
                android:id="@+id/btnOriginalText"
                android:layout_width="256dp"
                android:layout_height="wrap_content"
                android:text="Original Text" />
            <Button
                android:id="@+id/btnPicture"
                 android:layout_width="256dp"
                android:layout_height="wrap_content"
                android:text="Take Picture" />
            
            <Button
                android:id="@+id/btnCorrectedText"
                android:layout_width="256dp"
                android:layout_height="wrap_content"
                android:text="Corrected Text" />
            <Button
                android:id="@+id/btnAbout"
                android:layout_width="256dp"
                android:layout_height="wrap_content"
                android:text="About" />
          
        </LinearLayout>
    
</FrameLayout>MFG
chris92
 
						