Auflösung bei Galaxy Note stimmt nicht.

R

Raidri

Ambitioniertes Mitglied
1
Hallo,

meine App wird nicht auf den ganzen bildschirm beim galaxy note verteilt, obwohl ich in meinen layouts wrap_content und fill_parent verwende und keine festen pixel Werte habe, woran kann das liegen und was kann ich da tun ?

Vielen Dank.
 
hmm ganz einfach: du machst was falsch.

im ernst: woher soll jemand wissen, woran das liegt, wenn du keine layouts herzeigst. das manifest wäre auch interessant.
 
Da haste recht, hätte ich machen sollen. Sry.

Es lag tatsächlich an der manifest Datei. Hatte large screen support noch auf false.

Nun habe ich aber ein weiteres Problem. Bei mir werden nun die Textboxen auf die passende größe gezogen, jedoch sehen sie sehr verzerrt aus. Habe mal ein Screenshot angehängt.

und hier mal ein Auszug aus der xml Datei:

Code:
  <EditText android:layout_below="@id/accountEditText"
  			android:layout_alignParentRight="true" 
   			android:layout_alignRight="@id/textView4"
  			android:layout_alignLeft="@id/accountEditText"
   			android:layout_width="fill_parent"
   			android:layout_marginTop="-13dip"
   			android:id="@+id/emailEdittext" 
   			android:inputType="textEmailAddress" 
   			android:text="" 
   			android:layout_height="wrap_content" 
   			android:textSize="15dip" 
   			android:singleLine="true" />
  <TextView android:textColor="@color/white"
        	android:layout_marginLeft="5dip"
			android:layout_alignBaseline="@id/emailEdittext"
			android:id="@+id/textView2" 
			android:layout_width="wrap_content" 
			android:layout_height="wrap_content" 
			android:text="@string/emailLabel"/>
  <EditText android:layout_below="@id/emailEdittext"
  			android:layout_alignLeft="@id/emailEdittext"
  			android:layout_alignRight="@id/emailEdittext" 
            android:id="@+id/passwordEditText" 
            android:inputType="textPassword" 
            android:text=""
            android:layout_height="wrap_content" 
            android:textSize="15dip" 
            android:layout_width="fill_parent" 
            android:singleLine="true" />
  <TextView android:layout_alignLeft="@id/textView2" 
  			android:layout_alignBaseline="@id/passwordEditText"
		    android:textColor="@color/white" 
		    android:id="@+id/textView3" 
		    android:layout_width="wrap_content" 
		    android:layout_height="wrap_content" 
		    android:text="@string/passwordLabel" />
 

Anhänge

  • image.png
    image.png
    13,7 KB · Aufrufe: 238
hmm ja das manifest wäre trotzdem gut zu posten
 
ok, bitte :)
Code:
<manifest android:sharedUserLabel="@string/app_name"
      xmlns:android="http://schemas.android.com/apk/res/android" android:installLocation="auto" package="mf.miter.view" android:versionName="1.0.0" android:versionCode="1">
    <supports-screens android:smallScreens="true" android:normalScreens="true" android:largeScreens="true"/>
    <application android:theme="@style/customTheme" android:enabled="true" android:testOnly="false" android:label="@string/app_name" android:icon="@drawable/miter_icon" android:name="mf.miter.view.mitedroid" android:allowClearUserData="true" android:debuggable="false">
        <activity android:name="mf.miter.view.Login"
            	   android:configChanges="keyboardHidden"
        		  android:screenOrientation="portrait"
                  android:label="@string/app_name">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <activity android:label="@string/miteDataSettings" android:name="mf.miter.view.viewhelper.SettingsDialog" android:theme="@android:style/Theme.Dialog"></activity>
        <activity android:name="mf.miter.view.viewhelper.ApiDialog" android:theme="@android:style/Theme.Dialog"></activity>
        <activity android:name="mf.miter.view.Miter" 
        		  android:screenOrientation="sensor"
        		  android:configChanges="orientation|keyboardHidden" />
        <activity android:name="mf.miter.view.Settings">
        	<intent-filter>
        		 <category android:name="android.intent.category.PREFERENCE" />
        	</intent-filter>
        </activity>
    </application>
    <uses-permission android:name="android.permission.INTERNET"></uses-permission>
    <uses-permission android:name="com.android.vending.CHECK_LICENSE" />
    <uses-sdk android:minSdkVersion="7" 
          android:targetSdkVersion="8" />
</manifest>
 
Hat vielleicht jemand von euch eine Idee ?
Ich finde keine Lösung iwie.

Gruß
Raidri
 

Ähnliche Themen

D
Antworten
17
Aufrufe
395
datNeMo
D
M
Antworten
3
Aufrufe
146
moin
M
Chrilos
Antworten
9
Aufrufe
581
koje71
koje71
Zurück
Oben Unten