我想显示一个表格,其中某些字段是可编辑的 - 请参阅此示例:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
android:paddingLeft="1dip"
android:paddingRight="1dip"
android:paddingBottom="1dip"
android:background="#F00"
>
<ScrollView
android:id="@+id/ScrollView01"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:scrollbars="vertical"
>
<HorizontalScrollView
android:id="@+id/HorizontalScrollView01"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:scrollbars="horizontal"
>
<TableLayout
android:id="@+id/ItemPane"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="#EEE"
>
<TableRow
android:id="@+id/DataRow"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="#888"
android:layout_margin="0dp"
android:gravity="left"
>
<TextView
android:id="@+id/NameField"
android:text="Fieldname"
android:background="#EEE"
android:textSize="14dp"
android:layout_margin="1dp"
android:layout_marginBottom="0dp"
android:paddingLeft="3dp"
android:paddingRight="3dp"
/>
<EditText
android:id="@+id/DataField"
android:text="some field"
android:background="#EEE"
android:textSize="14dp"
android:layout_margin="1dp"
android:layout_marginBottom="0dp"
android:paddingLeft="3dp"
android:paddingRight="3dp"
android:singleLine="true"
/>
<EditText
android:id="@+id/DataField2"
android:text="some longish field content..."
android:background="#EEE"
android:textSize="14dp"
android:layout_margin="1dp"
android:layout_marginBottom="0dp"
android:paddingLeft="3dp"
android:paddingRight="3dp"
android:singleLine="true"
/>
</TableRow>
</TableLayout>
</HorizontalScrollView>
</ScrollView>
</LinearLayout>
为什么在EditText-fields中忽略了textSize属性?如何使这些字段中的文本变小,以便所有单元格具有相同的字体大小?为什么Android不尊重该属性,即使明确设置了?
迈克尔
答案 0 :(得分:18)
我认为你应该使用sp而不是dp。 机器人:TEXTSIZE = “20SP”
答案 1 :(得分:7)
为textSize属性尝试'dip'而不是'dp'。我不知道为什么,但有时使用'dp'没有任何效果,即使文档说这两者是相同的。所以我总是使用'dip'。
答案 2 :(得分:1)
在main_Activity.java中尝试以下内容
final Button btpls=(Button) findViewById(R.id.btpls);
btpls.setOnClickListener(new OnClickListener(){
public void onClick(View t){
float i=textfield.getTextSize();
textfield.setTextSize(i+1) ;
}
});
final Button btmins=(Button) findViewById(R.id.btmins);
btmins.setOnClickListener(new OnClickListener(){
public void onClick(View t){
float n=textfield.getTextSize();
textfield.setTextSize(n-1);
}
});
答案 3 :(得分:0)
愚蠢的系统不会让我贬低或评论。
sp也是密度无关的。 sp和dp之间的区别在于sp是根据用户的字体大小首选项缩放的。这意味着需要使用字体大小进行缩放的所有字体和用户界面元素都应以sp为单位完成。只有不应使用字体大小缩放的项目才能以dp为单位进行。
答案 4 :(得分:0)
在styles.xml中
<style name="HintTextSize" parent="TextAppearance.Design.Hint">
<item name="android:textSize">16sp</item>
<item name="android:paddingLeft">16sp</item>
</style>
<android.support.design.widget.TextInputLayout
android:id="@+id/trailer_one_text_input_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
**app:hintTextAppearance="@style/TextLabel"
android:layout_marginTop="10dp">
<EditText
android:id="@+id/edit_text_trailer_one"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:hint="@string/trailer_one"
android:inputType="text"
android:singleLine="true"
android:textAppearance="?android:attr/textAppearanceMedium"
android:textColor="@color/DrivingDarkGrey"/>
</android.support.design.widget.TextInputLayout>