我在 ICS 之前遇到 textView 不换行的问题。在 ICS 中(我相信蜂窝也可以,但我还没有尝试过),textView 中的文本很好地中断,但在姜饼中,下面的文本一直在一行中。任何想法如何解决这一问题?
我正在使用 viewpager,这是每个屏幕的布局。我使用自定义 textView 只是为了添加自定义字体,希望这不是问题。
pager_item.xml:`
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center"
android:orientation="vertical"
android:padding="20dp" >
<com.ursus.absolution.startme.MyTextView
android:id="@+id/message_textview"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/quotes_background"
android:gravity="center"
android:textColor="#585858"
android:textSize="25dp" />
<com.ursus.absolution.startme.MyTextView
android:id="@+id/author_textview"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:textColor="#585858"
android:textSize="20dp" />
</LinearLayout>`
In ICS
_____________
| |
| |
| "This is |
| my cool |
| text" |
| |
|___________|
In gingerbread and below
_____________
| |
| |
| "This is my cool text"
| |
| |
| |
|___________|
对不起,我是新人,我不能发布图片。在此先感谢,希望你们得到它。
///////更新///////////////
好的,伙计们,这很有趣..我尝试了你所有的建议,但都没有奏效,所以我开始了一个新的空白项目,只是将一个 textview 放入布局中,字符串很长,它包裹得很好。
所以,我不知道这怎么可能,但它是自定义主题来设置动作栏的样式,当我在清单中注释掉它时它工作得很好,但是系统全息主题似乎也在这样做
AndroidManifest.xml
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.ursus.absolution.startme"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="15" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.WRITE_INTERNAL_STORAGE" />
<application
android:icon="@drawable/iconn"
android:label="@string/app_name"
android:theme="@style/Theme.myStyle" >
<activity
android:name=".MainActivity"
android:label="@string/title_activity_main" >
</activity>
<activity
android:name=".SplashScreenActivity"
android:label="@string/title_activity_main"
android:theme="@android:style/Theme.NoTitleBar.Fullscreen" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
样式.xml
<resources>
<style name="Theme.myStyle" parent="@android:style/Theme.Holo">
<item name="android:actionBarStyle">@style/mycoolstyle_transparent_ActionBar</item>
</style>
<style name="mycoolstyle_transparent_ActionBar" parent="@android:style/Widget.Holo.ActionBar">
<item name="android:background">@drawable/transparent_actionbar</item>
</style>
...所以当我在清单中添加 android:theme="@style/Theme.myStyle" 时,textviews 行为异常但是当我添加 android:theme="@android:style/Theme.Holo" 时,就像我通常会做的那样强制全息主题,它也表现不佳
奇怪的。