我目前正在使用android.support.percent API
我的示例代码
<android.support.percent.PercentRelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
<TextView
android:text="Completed"
app:layout_widthPercent="40%"
app:layout_heightPercent="40%"
app:layout_marginTopPercent="15%"
app:layout_marginLeftPercent="15%"/>
</android.support.percent.PercentRelativeLayout/>
我的问题:
百分比相对布局适合在平板电脑中正确...但有些视图在手机中显示非常小。
所以我只想增加手机的百分比......而不是平板电脑。
我的问题:
如何使用百分比相对布局为手机和平板电脑设置不同的百分比。(如不同的尺寸)
app:layout_heightPercent="40%" // 适合平板电脑但我想提高到 50% 的手机..