当前位置: 代码迷 >> Android >> android技能
  详细解决方案

android技能

热度:60   发布时间:2016-05-01 20:18:27.0
android技巧

?

Listview默认选中最后一项
android:stackFromBottom="true"?android:transcriptMode="alwaysScroll"
?

android中文加粗

android:shadowColor="#000000"
android:shadowDx="0.2" android:shadowDy="0.0" android:shadowRadius="0.2"

在xml文件中使用android:textStyle="bold" 可以将英文设置成粗体,但是不能将中文设置成粗体,
将中文设置成粗体的方法是:?TextView?tv = (TextView)findViewById(R.id.TextView01);
? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ???TextPaint tp = tv.getPaint();
? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ???tp.setFakeBoldText(true);

?

Android 对话框【Dialog】去除白色边框代码

<resources>
????<style?name="dialog"?parent="@android:style/Theme.Dialog">
?????????<item?name="android:windowFrame">@null</item>
????????<item?name="android:windowIsFloating">true</item>
????????<item?name="android:windowIsTranslucent">false</item>
????????<item?name="android:windowNoTitle">true</item>
????????<item?name="android:background">@android:color/black</item>
????????<item?name="android:windowBackground">@null</item>
????????<item?name="android:backgroundDimEnabled">false</item>
????</style>
</resources>
更多信息请查看?java进阶网?http://www.javady.com
  相关解决方案