- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
IMAGE-Something like that 我已经开始创建一个应用程序,向我们显示一些城市的天气状况。我的问题是我不知道如何将框架放入 TextView 中以形成表格的形式。如果有任何解决方案,请帮助我。
我的 xml 代码
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.example.junior_marg.current_weather.Main12Activity">
<TextView
android:id="@+id/textview12"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/c"
android:layout_marginLeft="20dp"
android:layout_marginStart="10dp"
android:layout_marginTop="10dp"
android:textStyle="bold"/>
<TextView
android:id="@+id/textview13"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toRightOf="@+id/textview12"
android:layout_marginLeft="20dp"
android:layout_marginStart="92dp"
android:layout_marginTop="10dp" />
<TextView
android:id="@+id/textview14"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/d"
android:layout_below="@+id/textview12"
android:layout_marginLeft="20dp"
android:layout_marginStart="10dp"
android:layout_marginTop="10dp"
android:textStyle="bold"/>
<TextView
android:id="@+id/textview15"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toRightOf="@+id/textview14"
android:layout_below="@+id/textview13"
android:layout_marginLeft="50dp"
android:layout_marginStart="133dp"
android:layout_marginTop="10dp" />
<TextView
android:id="@+id/textview16"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/h2"
android:layout_below="@+id/textview14"
android:layout_marginLeft="20dp"
android:layout_marginStart="10dp"
android:layout_marginTop="10dp"
android:textStyle="bold"/>
<TextView
android:id="@+id/textview17"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toRightOf="@+id/textview16"
android:layout_marginLeft="20dp"
android:layout_marginStart="77dp"
android:layout_marginTop="63dp" />
<TextView
android:id="@+id/textview18"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/i2"
android:layout_below="@+id/textview16"
android:layout_marginLeft="20dp"
android:layout_marginStart="10dp"
android:layout_marginTop="10dp"
android:textStyle="bold"/>
<TextView
android:id="@+id/textview19"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toRightOf="@+id/textview18"
android:layout_marginLeft="50dp"
android:layout_marginStart="130dp"
android:layout_marginTop="90dp" />
<TextView
android:id="@+id/textview20"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/j2"
android:layout_marginLeft="20dp"
android:layout_marginStart="10dp"
android:layout_marginTop="10dp"
android:layout_below="@+id/textview18"
android:textStyle="bold"/>
<TextView
android:id="@+id/textview21"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toRightOf="@+id/textview20"
android:layout_below="@+id/textview19"
android:layout_marginLeft="10dp"
android:layout_marginStart="104dp"
android:layout_marginTop="10dp" />
<TextView
android:id="@+id/textview22"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/k2"
android:layout_below="@+id/textview20"
android:layout_marginLeft="20dp"
android:layout_marginStart="10dp"
android:layout_marginTop="10dp"
android:textStyle="bold"/>
<TextView
android:id="@+id/textview23"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toRightOf="@+id/textview22"
android:layout_below="@+id/textview21"
android:layout_marginLeft="50dp"
android:layout_marginStart="63dp"
android:layout_marginTop="11dp" />
<TextView
android:id="@+id/textview24"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/l2"
android:layout_below="@+id/textview22"
android:layout_marginLeft="20dp"
android:layout_marginStart="10dp"
android:layout_marginTop="10dp"
android:textStyle="bold"/>
<TextView
android:id="@+id/textview25"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toRightOf="@+id/textview24"
android:layout_below="@+id/textview23"
android:layout_marginLeft="20dp"
android:layout_marginStart="94dp"
android:layout_marginTop="10dp" />
<TextView
android:id="@+id/textview26"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/m2"
android:layout_below="@+id/textview24"
android:layout_marginLeft="20dp"
android:layout_marginStart="10dp"
android:layout_marginTop="10dp"
android:textStyle="bold"/>
<TextView
android:id="@+id/textview27"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toRightOf="@+id/textview26"
android:layout_below="@+id/textview25"
android:layout_marginLeft="50dp"
android:layout_marginStart="36dp"
android:layout_marginTop="10dp" />
<TextView
android:id="@+id/textview28"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/n2"
android:layout_marginLeft="20dp"
android:layout_marginStart="10dp"
android:layout_marginTop="10dp"
android:layout_below="@+id/textview26"
android:textStyle="bold"/>
<TextView
android:id="@+id/textview29"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toRightOf="@+id/textview28"
android:layout_below="@+id/textview27"
android:layout_marginLeft="20dp"
android:layout_marginStart="75dp"
android:layout_marginTop="10dp" />
<TextView
android:id="@+id/textview30"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/o2"
android:layout_below="@+id/textview28"
android:layout_marginLeft="20dp"
android:layout_marginStart="10dp"
android:layout_marginTop="10dp"
android:textStyle="bold"/>
<TextView
android:id="@+id/textview31"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toRightOf="@+id/textview30"
android:layout_below="@+id/textview29"
android:layout_marginLeft="50dp"
android:layout_marginStart="85dp"
android:layout_marginTop="10dp" />
<TextView
android:id="@+id/textview32"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/p2"
android:layout_below="@+id/textview30"
android:layout_marginLeft="20dp"
android:layout_marginStart="10dp"
android:layout_marginTop="10dp"
android:textStyle="bold"/>
<TextView
android:id="@+id/textview33"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toRightOf="@+id/textview32"
android:layout_below="@+id/textview31"
android:layout_marginLeft="20dp"
android:layout_marginStart="73dp"
android:layout_marginTop="10dp" />
<TextView
android:id="@+id/textview34"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/q2"
android:layout_below="@+id/textview32"
android:layout_marginLeft="20dp"
android:layout_marginStart="10dp"
android:layout_marginTop="10dp"
android:textStyle="bold"/>
<TextView
android:id="@+id/textview35"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toRightOf="@+id/textview34"
android:layout_below="@+id/textview33"
android:layout_marginLeft="50dp"
android:layout_marginStart="24dp"
android:layout_marginTop="10dp" />
<TextView
android:id="@+id/textview36"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/r2"
android:layout_marginLeft="20dp"
android:layout_marginStart="10dp"
android:layout_marginTop="10dp"
android:layout_below="@+id/textview34"
android:textStyle="bold"/>
<TextView
android:id="@+id/textview37"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toRightOf="@+id/textview36"
android:layout_below="@+id/textview35"
android:layout_marginLeft="10dp"
android:layout_marginStart="52dp"
android:layout_marginTop="10dp" />
<TextView
android:id="@+id/textview38"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/s2"
android:layout_below="@+id/textview36"
android:layout_marginLeft="20dp"
android:layout_marginStart="10dp"
android:layout_marginTop="10dp"
android:textStyle="bold"/>
<TextView
android:id="@+id/textview39"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toRightOf="@+id/textview38"
android:layout_below="@+id/textview37"
android:layout_marginLeft="50dp"
android:layout_marginStart="45dp"
android:layout_marginTop="11dp" />
<TextView
android:id="@+id/textview40"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/t2"
android:layout_below="@+id/textview38"
android:layout_marginLeft="20dp"
android:layout_marginStart="10dp"
android:layout_marginTop="10dp"
android:textStyle="bold"/>
<TextView
android:id="@+id/textview41"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toRightOf="@+id/textview40"
android:layout_below="@+id/textview39"
android:layout_marginLeft="20dp"
android:layout_marginStart="122dp"
android:layout_marginTop="10dp" />
<TextView
android:id="@+id/textview42"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/u2"
android:layout_below="@+id/textview40"
android:layout_marginLeft="20dp"
android:layout_marginStart="10dp"
android:layout_marginTop="10dp"
android:textStyle="bold"/>
<TextView
android:id="@+id/textview43"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toRightOf="@+id/textview42"
android:layout_below="@+id/textview41"
android:layout_marginLeft="50dp"
android:layout_marginStart="151dp"
android:layout_marginTop="10dp" />
我的java代码
TextView mTextView;
TextView mTextView2;
TextView mTextView3;
TextView mTextView4;
TextView mTextView5;
TextView mTextView6;
TextView mTextView7;
TextView mTextView8;
TextView mTextView9;
TextView mTextView10;
TextView mTextView11;
TextView mTextView12;
TextView mTextView13;
TextView mTextView14;
TextView mTextView15;
TextView mTextView16;
String therm;
String ygrasia;
String simdrosou;
String anemos;
String varom;
String simerinosy;
String ragd;
String trexkak;
String miniaiosy;
String ethsiosy;
String aisthpsix;
String yperithriakt;
String deiktisdis;
String hliakiakt;
String anatoli;
String disi;
String url;
Document doc;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main12);
StrictMode.ThreadPolicy policy = new StrictMode.ThreadPolicy.Builder().permitAll().build();
StrictMode.setThreadPolicy(policy);
mTextView = (TextView) findViewById(R.id.textview13);
mTextView2 = (TextView) findViewById(R.id.textview15);
mTextView3 = (TextView) findViewById(R.id.textview17);
mTextView4 = (TextView) findViewById(R.id.textview19);
mTextView5 = (TextView) findViewById(R.id.textview21);
mTextView6 = (TextView) findViewById(R.id.textview23);
mTextView7 = (TextView) findViewById(R.id.textview25);
mTextView8 = (TextView) findViewById(R.id.textview27);
mTextView9 = (TextView) findViewById(R.id.textview29);
mTextView10 = (TextView) findViewById(R.id.textview31);
mTextView11 = (TextView) findViewById(R.id.textview33);
mTextView12 = (TextView) findViewById(R.id.textview35);
mTextView13 = (TextView) findViewById(R.id.textview37);
mTextView14 = (TextView) findViewById(R.id.textview39);
mTextView15 = (TextView) findViewById(R.id.textview41);
mTextView16 = (TextView) findViewById(R.id.textview43);
url = "http://penteli.meteo.gr/stations/trikala/";
doc = null;
try {
doc = Jsoup.connect(url).get();
} catch (IOException e) {
e.printStackTrace();
}
Element table = doc.select("table").get(0);
Elements rows = table.select("tr");
Element row = rows.get(5);
Elements cols = row.select("td");
therm = cols.get(1).text() ;
mTextView.setText(therm);
Element row_2 = rows.get(6);
Elements cols_2 = row_2.select("td");
ygrasia = cols_2.get(1).text() ;
mTextView2.setText(ygrasia);
Element row_3 = rows.get(7);
Elements cols_3 = row_3.select("td");
simdrosou = cols_3.get(1).text() ;
mTextView3.setText(simdrosou);
Element row_4 = rows.get(8);
Elements cols_4 = row_4.select("td");
anemos = cols_4.get(1).text() ;
mTextView4.setText(anemos);
Element row_5 = rows.get(9);
Elements cols_5 = row_5.select("td");
varom = cols_5.get(1).text() ;
mTextView5.setText(varom);
Element row_6 = rows.get(10);
Elements cols_6 = row_6.select("td");
simerinosy = cols_6.get(1).text() ;
mTextView6.setText(simerinosy);
Element row_7 = rows.get(11);
Elements cols_7 = row_7.select("td");
ragd = cols_7.get(1).text() ;
mTextView7.setText(ragd);
Element row_8 = rows.get(12);
Elements cols_8 = row_8.select("td");
trexkak = cols_8.get(1).text() ;
mTextView8.setText(trexkak);
Element row_9 = rows.get(13);
Elements cols_9 = row_9.select("td");
miniaiosy = cols_9.get(1).text() ;
mTextView9.setText(miniaiosy);
Element row_10 = rows.get(14);
Elements cols_10 = row_10.select("td");
ethsiosy = cols_10.get(1).text() ;
mTextView10.setText(ethsiosy);
Element row_11 = rows.get(15);
Elements cols_11 = row_11.select("td");
aisthpsix = cols_11.get(1).text() ;
mTextView11.setText(aisthpsix);
Element row_12 = rows.get(16);
Elements cols_12 = row_12.select("td");
yperithriakt = cols_12.get(1).text() ;
mTextView12.setText(yperithriakt);
Element row_13 = rows.get(17);
Elements cols_13 = row_13.select("td");
deiktisdis = cols_13.get(1).text() ;
mTextView13.setText(deiktisdis);
Element row_14 = rows.get(18);
Elements cols_14 = row_14.select("td");
hliakiakt = cols_14.get(1).text() ;
mTextView14.setText(hliakiakt);
Element row_15 = rows.get(19);
Elements cols_15 = row_15.select("td");
anatoli = cols_15.get(1).text() ;
mTextView15.setText(anatoli);
Element row_16 = rows.get(20);
Elements cols_16 = row_16.select("td");
disi = cols_16.get(1).text() ;
mTextView16.setText(disi);
}
}
最佳答案
要获得类似于表格的东西,我建议使用 TableLayout 。
或者,您可以尝试新的 FlexboxLayout.
关于java - 如何将 TextView 中的框架放入表格的形式?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44836813/
好的,这听起来很简单,但我已经花了几个小时在谷歌上搜索,我只是找不到解决方案,这并不复杂。 我想创建一个包含图像和文本的表格。我希望表格的每一行都具有相同的高度。我希望文本始终从顶部开始。 IE。 \
在我的网站表单上 - 我的出生日期、月份和年份菜单显示在两行上,我希望它们都显示在同一行上。 当我测试代码时,它显示在一行中,所以我相信一定存在宽度问题。 您可以在右侧表格 (incomeprotec
我们需要跟踪和审核生产,本质上我们有很多订单,但我们似乎在途中丢失了一些产品(废品等)。 为了阻止这种情况,我们现在已在 Google 表格上下了订单,并列出了应有的数量,然后员工会写下收到的数量。
我正在转换我的应用程序,以便它适用于 iOS 7。在应用程序的一部分,我有两个搜索栏,每个搜索栏都有一个与之关联的 UISearchDisplayController。当我搜索 UISearchDis
正如标题所说,非固定表格布局是否与类似的 HTML 表格具有相同的性能问题? 最佳答案 非固定表格的问题在于,要确定一列的宽度,必须加载该列的所有单元格。这仅在...... …您有一个包含几千字节或几
我在使用 Javascript 遍历表格并从一行的第一个单元格获取文本时遇到问题。我想获取此单元格的文本,以便我可以将它与其他内容进行比较,如果文本匹配则删除该行。但是,当我尝试获取文本时,实际出现的
我经常发现自己想要制作一个表格表格——一堆行,每一行都是一个单独的表格,有自己的字段和提交按钮。例如,这是一个宠物店应用程序示例——假设这是一个结帐屏幕,您可以选择更新所选宠物的数量和属性,并在结帐前
看过许多UBB代码,包括JS,ASP,JSP的,一直没发现表格的UBB,虽然可以直接用HTML模式实现相同表格功能,但对于某些开放的站点来说开放HTML模式终究是不合适的,故一直想实现表格的UBB。
表格由 table 标签来定义。每个表格均有若干行(由 tr 标签定义),每行被分割为若干单元格(由 td 标签定义)。字母 td 指表格数据(table data),即数据单元格的内容。数据单元格
我有一个 HTML 与 border-radius和使用 position: sticky 的粘性标题看起来像这样: https://codepen.io/muhammadrehansaeed/pen
对于 iPhone 应用程序,我需要以网格格式显示只读表格数据。该数据可能有许多行和列。 我可以使用 UITableView,但问题是数据很可能会非常宽并且需要滚动。 有没有办法将 UITableVi
我知道这里有类似的问题,但我找不到适合我的答案。 我想要的是显示表单“默认”是选择了某些选项(在这种情况下,除了“Ban Appeal”或“Ban Appeal(西类牙语)”之外的所有内容,我希望仅在
天啊! 我想在Flutter中创建以下非常简单的表。基本上是两列文字,左列右对齐,右列左对齐。如果右列具有多个名称,则每一行都将顶部对齐。 左列应自动调整为最大项目的大小(因为每个标题都有翻译字符串)
我们开始构建 SSAS 表格模型,并想知道大多数人是否拥有一个或多个模型。如果有多个,您是否复制每个所需的表,或者是否有办法在模型之间共享表?我想我知道答案,但我希望那些有更多经验的人能够证实我们的发
tl;博士 如何将任意数量的单词分成两列,总是在最后一列中只有最后一个单词,在第一列中包含所有其他单词? =IFS( LEN(C2)-LEN(SUBSTITUTE(C2," ",""))=1, SP
你们知道一个图表或dable,它可以提供一个简短而简洁但仍然完整且相对最新的现有协议(protocol)及其细节的 View ? (即:ZeroMQ、Rendez-Vous、EMS、...所有这些!:
我才刚刚开始开发MFC应用程序,我希望对整个“控件”概念更加熟悉。我在Visual Studio中使用对话框编辑器,到目前为止,我无法找到添加简单表/网格的功能。这对我来说似乎很基础,但是我什至找不到
我需要对一个非常大的表或矩阵执行计算和操作,大约有 7500 行和 30000 列。 矩阵数据将如下所示: 文件编号|字1 |字 2 |字 3 |... |字 30000 |文档类 0032 1 0
我正在使用设计非常糟糕的数据库,我需要在编写查询之前重新调整表格。 以下是我的常见问题: 时间戳已分为两列(一列用于日期,另一列用于时间)。 一些字符串列也被拆分成多个列。 大多数字符串都有固定长度和
我正在尝试显示 $row["name"] 通过 HTML Table 的形式,如下所示: echo " ".$row["name"]." "; 我也从这里获取行变量: $que
我是一名优秀的程序员,十分优秀!